oktopus/deploy/kubernetes/frontend.yaml
2024-04-20 18:56:55 +00:00

49 lines
1.0 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: frontend
spec:
replicas: 1
selector:
matchLabels:
app: frontend
strategy:
type: Recreate # Specify the Recreate strategy
template:
metadata:
labels:
app: frontend
spec:
containers:
- name: frontend
image: oktopusp/frontend:latest
resources:
requests:
memory: 64Mi
cpu: 100m
limits:
memory: 256Mi
cpu: 200m
ports:
- containerPort: 8080
imagePullPolicy: IfNotPresent
env:
# - name: NEXT_PUBLIC_REST_ENDPOINT
# value: "192.168.1.130:30003"
#- name: NEXT_PUBLIC_WS_ENDPOINT
# value: "192.168.1.130:30005"
---
apiVersion: v1
kind: Service
metadata:
name: frontend-svc
spec:
selector:
app: frontend
ports:
- protocol: TCP
port: 8080
targetPort: 8080
externalTrafficPolicy: Local
type: LoadBalancer