Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada, AT&T |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
kosewski | 24e5229 | 2020-07-14 09:57:53 +0000 | [diff] [blame^] | 15 | apiVersion: apps/v1 |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 16 | kind: StatefulSet |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 17 | metadata: |
| 18 | name: {{ include "common.fullname" . }} |
| 19 | namespace: {{ include "common.namespace" . }} |
| 20 | labels: |
| 21 | app: {{ include "common.name" . }} |
| 22 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 23 | release: {{ include "common.release" . }} |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
kosewski | 24e5229 | 2020-07-14 09:57:53 +0000 | [diff] [blame^] | 26 | selector: |
| 27 | matchLabels: |
| 28 | app: {{ include "common.name" . }} |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 29 | replicas: {{ .Values.replicaCount }} |
| 30 | template: |
| 31 | metadata: |
| 32 | labels: |
| 33 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 34 | release: {{ include "common.release" . }} |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 35 | spec: |
Taka Cho | 7275985 | 2019-06-26 13:51:46 -0400 | [diff] [blame] | 36 | initContainers: |
| 37 | - name: {{ include "common.name" . }}-chown |
| 38 | image: "busybox" |
| 39 | command: ["sh", "-c", "chown -R {{ .Values.config.ansibleUid }}:{{ .Values.config.ansibleGid}} {{ .Values.persistence.playbookPath }}"] |
| 40 | volumeMounts: |
| 41 | - mountPath: {{ .Values.persistence.playbookPath }} |
| 42 | name: {{ include "common.fullname" . }}-playbook |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 43 | containers: |
| 44 | - name: {{ include "common.name" . }} |
| 45 | command: ["/bin/bash"] |
Aaron Hay | fbe516c | 2018-09-27 08:06:15 -0400 | [diff] [blame] | 46 | args: ["-c", "cd /opt/onap/ccsdk && ./startAnsibleServer.sh"] |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 47 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
| 48 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 49 | ports: |
| 50 | - containerPort: {{ .Values.service.internalPort }} |
| 51 | # disable liveness probe when breakpoints set in debugger |
| 52 | # so K8s doesn't restart unresponsive container |
| 53 | {{ if .Values.liveness.enabled }} |
| 54 | livenessProbe: |
| 55 | tcpSocket: |
| 56 | port: {{ .Values.service.internalPort }} |
| 57 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 58 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 59 | {{ end }} |
| 60 | readinessProbe: |
| 61 | tcpSocket: |
| 62 | port: {{ .Values.service.internalPort }} |
| 63 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 64 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 65 | volumeMounts: |
| 66 | - mountPath: /etc/localtime |
| 67 | name: localtime |
| 68 | readOnly: true |
| 69 | - mountPath: {{ .Values.config.configDir }}/RestServer_config |
| 70 | name: config |
| 71 | subPath: RestServer_config |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 72 | - mountPath: {{ .Values.persistence.playbookPath }} |
Taka Cho | 7275985 | 2019-06-26 13:51:46 -0400 | [diff] [blame] | 73 | name: {{ include "common.fullname" . }}-playbook |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 74 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 75 | {{ include "common.resources" . | indent 12 }} |
Sylvain Desbureaux | 45bb713 | 2018-11-23 15:41:38 +0100 | [diff] [blame] | 76 | {{- if .Values.nodeSelector }} |
Aaron Hay | 343e600 | 2018-08-21 13:55:00 -0400 | [diff] [blame] | 77 | nodeSelector: |
| 78 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 79 | {{- end -}} |
| 80 | {{- if .Values.affinity }} |
| 81 | affinity: |
| 82 | {{ toYaml .Values.affinity | indent 10 }} |
| 83 | {{- end }} |
| 84 | volumes: |
| 85 | - name: localtime |
| 86 | hostPath: |
| 87 | path: /etc/localtime |
| 88 | - name: config |
| 89 | configMap: |
| 90 | name: {{ include "common.fullname" . }} |
| 91 | defaultMode: 0644 |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 92 | {{ if not .Values.persistence.enabled }} |
Taka Cho | 7275985 | 2019-06-26 13:51:46 -0400 | [diff] [blame] | 93 | - name: {{ include "common.fullname" . }}-playbook |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 94 | emptyDir: {} |
| 95 | {{ else }} |
| 96 | volumeClaimTemplates: |
| 97 | - metadata: |
Taka Cho | 7275985 | 2019-06-26 13:51:46 -0400 | [diff] [blame] | 98 | name: {{ include "common.fullname" . }}-playbook |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 99 | labels: |
| 100 | name: {{ include "common.fullname" . }} |
Sylvain Desbureaux | 5f46e6e | 2019-11-29 09:19:40 +0100 | [diff] [blame] | 101 | chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 102 | release: "{{ include "common.release" . }}" |
Sylvain Desbureaux | 5f46e6e | 2019-11-29 09:19:40 +0100 | [diff] [blame] | 103 | heritage: "{{ .Release.Service }}" |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 104 | spec: |
Sylvain Desbureaux | 5f46e6e | 2019-11-29 09:19:40 +0100 | [diff] [blame] | 105 | accessModes: |
| 106 | - {{ .Values.persistence.accessMode }} |
| 107 | storageClassName: {{ include "common.storageClass" . }} |
Aaron Hay | 0fc9076 | 2019-03-20 19:48:42 -0400 | [diff] [blame] | 108 | resources: |
| 109 | requests: |
| 110 | storage: {{ .Values.persistence.size }} |
| 111 | {{ end }} |