aboutsummaryrefslogtreecommitdiffstats
path: root/helm/policy-models-simulator/templates/deployment.yaml
blob: 84ba530de52f1e4a51aae24557f1a5343fc82881 (plain)
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
apiVersion: apps/v1
kind: Deployment
metadata:
  name: {{ include "policy-models-simulator.fullname" . }}
  labels:
{{ include "policy-models-simulator.labels" . | indent 4 }}
spec:
  replicas: {{ .Values.replicaCount }}
  selector:
    matchLabels:
      app.kubernetes.io/name: {{ include "policy-models-simulator.name" . }}
      app.kubernetes.io/instance: {{ .Release.Name }}
  template:
    metadata:
      labels:
        app.kubernetes.io/name: {{ include "policy-models-simulator.name" . }}
        app.kubernetes.io/instance: {{ .Release.Name }}
    spec:
    {{- with .Values.imagePullSecrets }}
      imagePullSecrets:
        {{- toYaml . | nindent 8 }}
    {{- end }}
      serviceAccountName: {{ template "policy-models-simulator.serviceAccountName" . }}
      securityContext:
        {{- toYaml .Values.podSecurityContext | nindent 8 }}
      containers:
        - name: {{ .Chart.Name }}
          securityContext:
            {{- toYaml .Values.securityContext | nindent 12 }}
          image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          command: ["/opt/app/policy/simulators/bin/simulators.sh"]
          args: ["/opt/app/policy/simulators/etc/mounted/simParameters.json"]
          ports:
          - containerPort: {{ .Values.service.internalPort }}
          - containerPort: {{ .Values.service.internalPort2 }}
          - containerPort: {{ .Values.service.internalPort3 }}
          - containerPort: {{ .Values.service.internalPort4 }}
          - containerPort: {{ .Values.service.internalPort5 }}
          - containerPort: {{ .Values.service.internalPort6 }}
          livenessProbe:
            exec:
              command:
              - /bin/bash
              - -c
              - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
            initialDelaySeconds: 120
            periodSeconds: 20
          readinessProbe:
            exec:
              command:
              - /bin/bash
              - -c
              - nodetool status | grep $POD_IP | awk '$1!="UN" { exit 1; }'
            initialDelaySeconds: 120
            periodSeconds: 20
          volumeMounts:
            - mountPath: /opt/app/policy/simulators/etc/mounted/
              name: simconfig
              readOnly: true
          resources:
            {{- toYaml .Values.resources | nindent 12 }}
      {{- with .Values.nodeSelector }}
      nodeSelector:
        {{- toYaml . | nindent 8 }}
      {{- end }}
    {{- with .Values.affinity }}
      affinity:
        {{- toYaml . | nindent 8 }}
    {{- end }}
    {{- with .Values.tolerations }}
      tolerations:
        {{- toYaml . | nindent 8 }}
    {{- end }}
      volumes:
        - name: simconfig
          configMap:
            name: {{ include "policy-models-simulator.fullname" . }}-configmap
            defaultMode: 0755