2 # Copyright (c) 2018 Intel Corporation.
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
8 # http://www.apache.org/licenses/LICENSE-2.0
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
20 name: {{ include "common.fullname" . }}
21 namespace: {{ include "common.namespace" . }}
23 app: {{ include "common.name" . }}
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
25 release: {{ include "common.release" . }}
26 heritage: {{ .Release.Service }}
28 replicas: {{ .Values.replicaCount }}
31 app: {{ include "common.name" . }}
35 app: {{ include "common.name" . }}
36 release: {{ include "common.release" . }}
37 name: {{ include "common.name" . }}
39 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
44 value: "{{ if (include "common.needTLS" .) }}https{{ else }}http{{ end }}"
46 value: "{{ .Values.config.msbgateway }}.{{ include "common.namespace" . }}"
48 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.msbPort }}{{ else }}{{ .Values.config.msbPlainPort }}{{ end }}"
50 value: "aai.{{ include "common.namespace" . }}"
52 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.aai.aaiPort }}{{ else }}{{ .Values.config.aai.aaiPlainPort }}{{ end }}"
53 - name: AAI_SCHEMA_VERSION
54 value: "{{ .Values.config.aai.schemaVersion }}"
56 value: "{{ .Values.config.aai.username }}"
58 value: "{{ .Values.config.aai.password }}"
60 value: "{{- if (include "common.needTLS" .) }}{{ .Values.config.ssl_enabled }}{{ else }}false{{ end }}"
61 name: {{ include "common.name" . }}
63 - mountPath: "{{ .Values.log.path }}"
65 - mountPath: /opt/pike/pike/pub/config/log.yml
69 {{ include "common.resources" . | indent 12 }}
70 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
71 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
73 args: ["-c", "/bin/sh /opt/pike/run.sh"]
75 - containerPort: {{ .Values.service.internalPort }}
76 # disable liveness probe when breakpoints set in debugger
77 # so K8s doesn't restart unresponsive container
78 {{ if .Values.liveness.enabled }}
81 path: /api/multicloud-pike/v0/swagger.json
82 port: {{ .Values.service.internalPort }}
84 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
85 periodSeconds: {{ .Values.liveness.periodSeconds }}
86 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
87 successThreshold: {{ .Values.liveness.successThreshold }}
88 failureThreshold: {{ .Values.liveness.failureThreshold }}
91 {{ include "common.log.sidecar" . | nindent 5 }}
92 - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.memcached }}
93 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
95 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
99 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 5 }}
100 - name: pike-logconfig
102 name: {{ include "common.fullname" . }}-log-configmap
104 - name: "{{ include "common.namespace" . }}-docker-registry-key"
105 restartPolicy: Always