12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- ---
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: payment
- labels:
- name: payment
- spec:
- replicas: 1
- selector:
- matchLabels:
- name: payment
- template:
- metadata:
- labels:
- name: payment
- spec:
- containers:
- - name: payment
- image: weaveworksdemos/payment:0.4.3
- resources:
- limits:
- cpu: 100m
- memory: 100Mi
- requests:
- cpu: 99m
- memory: 100Mi
- ports:
- - containerPort: 80
- securityContext:
- runAsNonRoot: true
- runAsUser: 10001
- capabilities:
- drop:
- - all
- add:
- - NET_BIND_SERVICE
- readOnlyRootFilesystem: true
- livenessProbe:
- httpGet:
- path: /health
- port: 80
- initialDelaySeconds: 300
- periodSeconds: 3
- readinessProbe:
- httpGet:
- path: /health
- port: 80
- initialDelaySeconds: 180
- periodSeconds: 3
- nodeSelector:
- beta.kubernetes.io/os: linux
|