-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbackend-statefulset.yml
132 lines (132 loc) · 3.47 KB
/
backend-statefulset.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# StatefulSets
---
# ign-backend Redundant Pair
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: ign-backend
spec:
selector:
matchLabels:
name: ign-backend
serviceName: ign-backend
replicas: 2 # should only ever be 2 for redundancy
updateStrategy:
# type: OnDelete
# rollingUpdate: null
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
partition: 0
template:
metadata:
labels:
name: ign-backend
spec:
securityContext:
runAsUser: 2003
runAsGroup: 2003
fsGroup: 2003
runAsNonRoot: true
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: name
operator: In
values:
- ign-backend
topologyKey: kubernetes.io/hostname
containers:
- name: gateway
image: inductiveautomation/ignition:latest
resources:
requests:
memory: "1280Mi"
cpu: "1000m"
args:
- -m
- "1024"
- -n
- "backend"
- --
- gateway.useProxyForwardedHeader=true
ports:
- name: http
containerPort: 8088
- name: https
containerPort: 8043
- name: gan
containerPort: 8060
envFrom:
- configMapRef:
name: gateway-base-config
- secretRef:
name: gateway-base-secrets
env:
- name: EAM_SETUP_INSTALLSELECTION
value: "Controller"
- name: FOO
value: "BAZ"
volumeMounts:
- mountPath: /usr/local/bin/ignition/data
name: data
- mountPath: /config/scripts
name: ignition-config-scripts
readOnly: true
- mountPath: /run/secrets/gan-tls
name: gan-tls
readOnly: true
readinessProbe:
exec:
command: [ "/config/scripts/redundant-health-check.sh", "-t", "3" ]
initialDelaySeconds: 30
periodSeconds: 5
failureThreshold: 2
timeoutSeconds: 3
initContainers:
- name: preconfigure
image: inductiveautomation/ignition:latest
command:
- /config/scripts/invoke-args.sh
args:
- /config/scripts/seed-data-volume.sh
- /config/scripts/seed-redundancy.sh
- /config/scripts/prepare-gan-certificates.sh
- cp /config/files/logback.xml /data/logback.xml
volumeMounts:
- mountPath: /data
name: data
- mountPath: /config/files
name: ignition-config-files
- mountPath: /config/scripts
name: ignition-config-scripts
- mountPath: /run/secrets/gan-tls
name: gan-tls
- mountPath: /run/secrets/ignition-gan-ca
name: ignition-gan-ca
readOnly: true
volumes:
- name: ignition-config-scripts
configMap:
name: ignition-config-scripts
defaultMode: 0755
- name: ignition-config-files
configMap:
name: ignition-config-files
defaultMode: 0644
- name: ignition-gan-ca
secret:
secretName: ignition-gan-ca
- name: gan-tls
secret:
secretName: backend-gan-tls
volumeClaimTemplates:
- metadata:
name: data
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: 3Gi