You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "helm-socks-frontend.name" . }}
|
|
labels:
|
|
{{- include "helm-socks-frontend.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
name: front-end
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: front-end
|
|
spec:
|
|
containers:
|
|
- name: front-end
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
resources:
|
|
limits:
|
|
cpu: 300m
|
|
memory: 1000Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 300Mi
|
|
ports:
|
|
- containerPort: 8079
|
|
env:
|
|
- name: SESSION_REDIS
|
|
value: "true"
|
|
securityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 10001
|
|
capabilities:
|
|
drop:
|
|
- all
|
|
readOnlyRootFilesystem: true
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 8079
|
|
initialDelaySeconds: 300
|
|
periodSeconds: 3
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 8079
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 3
|
|
nodeSelector:
|
|
beta.kubernetes.io/os: linux
|
|
|