blob: 3a87aa8b7947892119f24c0f30fabfd7c6024aa4 [file] [log] [blame]
Lathish65cb6092020-03-26 15:06:31 +00001################################################################################
2# Copyright (c) 2020 Nordix Foundation. #
3# #
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 #
7# #
8# http://www.apache.org/licenses/LICENSE-2.0 #
9# #
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################################################################################
16
17kind: Deployment
18apiVersion: apps/v1
19metadata:
20 name: {{ include "common.name.policymanagementservice" . }}
21 namespace: {{ include "common.namespace.nonrtric" . }}
22 generation: 1
23 labels:
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 }}
28 annotations:
29 deployment.kubernetes.io/revision: '1'
30spec:
31 replicas: 1
32 selector:
33 matchLabels:
34 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.policymanagementservice" . }}
35 release: {{ .Release.Name }}
36 template:
37 metadata:
38 labels:
39 app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.policymanagementservice" . }}
40 release: {{ .Release.Name }}
41 spec:
42 hostname: {{ include "common.name.policymanagementservice" . }}
43 containers:
44 - name: {{ include "common.container.policymanagementservice" . }}
45 image: {{ .Values.policymanagementservice.image.registry }}/{{ .Values.policymanagementservice.image.name }}:{{ .Values.policymanagementservice.image.tag }}
46 imagePullPolicy: {{ .Values.policymanagementservice.imagePullPolicy }}
47 ports:
48 - containerPort: {{ include "common.serviceport.policymanagementservice.http" . }}
49 protocol: TCP
50 readinessProbe:
51 tcpSocket:
52 port: {{ include "common.serviceport.policymanagementservice.http" . }}
53 initialDelaySeconds: 5
54 periodSeconds: 15
55 volumeMounts:
56 - name: {{ .Release.Name }}-policy-conf
57 mountPath: /opt/app/policy-agent/config/application_configuration.json
58 subPath: application_configuration.json
59 volumes:
60 - name: {{ .Release.Name }}-policy-conf
61 configMap:
62 name: {{ .Release.Name }}-policy-configmap