[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / appc / charts / appc-ansible-server / templates / statefulset.yaml
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
15 apiVersion: apps/v1
16 kind: StatefulSet
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 "+" "_" }}
23     release: {{ include "common.release" . }}
24     heritage: {{ .Release.Service }}
25 spec:
26   serviceName: {{ include "common.servicename" . }}
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - name: {{ include "common.name" . }}-chown
39         image: "busybox"
40         command: ["sh", "-c", "chown -R {{ .Values.config.ansibleUid }}:{{ .Values.config.ansibleGid}} {{ .Values.persistence.playbookPath }}"]
41         volumeMounts:
42           - mountPath: {{ .Values.persistence.playbookPath }}
43             name: {{ include "common.fullname" . }}-playbook
44       containers:
45         - name: {{ include "common.name" . }}
46           command: ["/bin/bash"]
47           args: ["-c", "cd /opt/onap/ccsdk && ./startAnsibleServer.sh"]
48           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
49           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50           ports:
51           - containerPort: {{ .Values.service.internalPort }}
52           # disable liveness probe when breakpoints set in debugger
53           # so K8s doesn't restart unresponsive container
54           {{ if .Values.liveness.enabled }}
55           livenessProbe:
56             tcpSocket:
57               port: {{ .Values.service.internalPort }}
58             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59             periodSeconds: {{ .Values.liveness.periodSeconds }}
60           {{ end }}
61           readinessProbe:
62             tcpSocket:
63               port: {{ .Values.service.internalPort }}
64             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65             periodSeconds: {{ .Values.readiness.periodSeconds }}
66           volumeMounts:
67           - mountPath: /etc/localtime
68             name: localtime
69             readOnly: true
70           - mountPath: {{ .Values.config.configDir }}/RestServer_config
71             name: config
72             subPath: RestServer_config
73           - mountPath: {{ .Values.persistence.playbookPath }}
74             name: {{ include "common.fullname" . }}-playbook
75           resources:
76 {{ include "common.resources" . | indent 12 }}
77         {{- if .Values.nodeSelector }}
78         nodeSelector:
79 {{ toYaml .Values.nodeSelector | indent 10 }}
80         {{- end -}}
81         {{- if .Values.affinity }}
82         affinity:
83 {{ toYaml .Values.affinity | indent 10 }}
84         {{- end }}
85       volumes:
86         - name: localtime
87           hostPath:
88             path: /etc/localtime
89         - name: config
90           configMap:
91             name: {{ include "common.fullname" . }}
92             defaultMode: 0644
93 {{ if not .Values.persistence.enabled }}
94         - name: {{ include "common.fullname" . }}-playbook
95           emptyDir: {}
96 {{ else }}
97   volumeClaimTemplates:
98   - metadata:
99       name: {{ include "common.fullname" . }}-playbook
100       labels:
101         name: {{ include "common.fullname" . }}
102         chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
103         release: "{{ include "common.release" . }}"
104         heritage: "{{ .Release.Service }}"
105     spec:
106       accessModes:
107       - {{ .Values.persistence.accessMode }}
108       storageClassName: {{ include "common.storageClass" . }}
109       resources:
110         requests:
111           storage: {{ .Values.persistence.size }}
112 {{ end }}