forked from esara/robot-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment-deployment.yaml
58 lines (58 loc) · 1.42 KB
/
payment-deployment.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
apiVersion: apps/v1
kind: Deployment
metadata:
name: payment
labels:
service: payment
stage: prod
spec:
replicas: 1
selector:
matchLabels:
service: payment
stage: prod
template:
metadata:
labels:
service: payment
stage: prod
spec:
{{ if .Values.psp.enabled }}
serviceAccountName: robot-shop
{{ end }}
containers:
- name: payment
image: {{ .Values.image.repo }}/rs-payment:{{ .Values.image.version }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
# agent networking access
env:
- name: INSTANA_AGENT_HOST
valueFrom:
fieldRef:
fieldPath: status.hostIP
{{- if .Values.payment.gateway }}
- name: PAYMENT_GATEWAY
value: {{ .Values.payment.gateway }}
{{- end }}
ports:
- containerPort: 8080
resources:
limits:
cpu: 200m
memory: 100Mi
requests:
cpu: 100m
memory: 50Mi
restartPolicy: Always
{{- with .Values.payment.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.payment.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.payment.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}