1 ################################################################################
2 # Copyright (c) 2020 Nordix Foundation. #
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. #
15 ################################################################################
20 name: {{ include "common.name.policymanagementservice" . }}
21 namespace: {{ include "common.namespace.nonrtric" . }}
24 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.policymanagementservice" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26 release: {{ .Release.Name }}
27 heritage: {{ .Release.Service }}
29 deployment.kubernetes.io/revision: '1'
31 serviceName: {{ include "common.name.policymanagementservice" . }}
35 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.policymanagementservice" . }}
36 release: {{ .Release.Name }}
40 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.policymanagementservice" . }}
41 release: {{ .Release.Name }}
43 hostname: {{ include "common.name.policymanagementservice" . }}
45 - name: {{ include "common.container.policymanagementservice" . }}
46 image: {{ .Values.policymanagementservice.image.registry }}/{{ .Values.policymanagementservice.image.name }}:{{ .Values.policymanagementservice.image.tag }}
47 imagePullPolicy: {{ .Values.policymanagementservice.imagePullPolicy }}
49 - containerPort: {{ .Values.policymanagementservice.service.targetPort1 }}
51 - containerPort: {{ .Values.policymanagementservice.service.targetPort2 }}
55 port: {{ .Values.policymanagementservice.service.targetPort1 }}
56 initialDelaySeconds: {{ .Values.policymanagementservice.liveness.initialDelaySeconds }}
57 periodSeconds: {{ .Values.policymanagementservice.liveness.periodSeconds }}
61 port: {{ .Values.policymanagementservice.service.targetPort1 }}
62 initialDelaySeconds: {{ .Values.policymanagementservice.liveness.initialDelaySeconds }}
63 periodSeconds: {{ .Values.policymanagementservice.liveness.periodSeconds }}
65 - name: {{ include "common.name.policymanagementservice" . }}-vardata
66 mountPath: "/var/policy-management-service"
67 - name: {{ include "common.name.policymanagementservice" . }}-policy-config
68 mountPath: /opt/app/policy-agent/config
69 - name: {{ include "common.name.policymanagementservice" . }}-policy-data
70 mountPath: /opt/app/policy-agent/data
72 - name: {{ include "common.name.policymanagementservice" . }}-policy-config
74 name: {{ include "common.name.policymanagementservice" . }}-configmap-config
75 - name: {{ include "common.name.policymanagementservice" . }}-policy-data
77 name: {{ include "common.name.policymanagementservice" . }}-configmap-data
80 name: {{ include "common.name.policymanagementservice" . }}-vardata
84 storageClassName: "{{ .Values.policymanagementservice.persistence.storageClassName }}"
87 storage: "{{ .Values.policymanagementservice.persistence.size }}"