nxtgauge-gitops/apps/nxtgauge-frontendwebsite/base/deployment.yaml

52 lines
1.3 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: nxtgauge-frontendwebsite
namespace: nxtgauge
labels:
app: nxtgauge-frontendwebsite
spec:
replicas: 1
selector:
matchLabels:
app: nxtgauge-frontendwebsite
template:
metadata:
labels:
app: nxtgauge-frontendwebsite
spec:
containers:
- name: frontendwebsite
image: ghcr.io/traceworks2023/nxtgauge-frontendwebsite
imagePullPolicy: Always
ports:
- containerPort: 3000
name: http
envFrom:
- configMapRef:
name: nxtgauge-frontendwebsite-config
- secretRef:
name: nxtgauge-frontendwebsite-secrets
readinessProbe:
httpGet:
path: /
port: 3000
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3
failureThreshold: 3
livenessProbe:
httpGet:
path: /
port: 3000
initialDelaySeconds: 20
periodSeconds: 20
timeoutSeconds: 3
failureThreshold: 3
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi