Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 1 | ################################################################################ |
| 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 | |
| 17 | kind: Deployment |
| 18 | apiVersion: apps/v1 |
| 19 | metadata: |
| 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' |
| 30 | spec: |
| 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: |
Lathish | 32a43aa | 2020-05-20 23:18:18 +0100 | [diff] [blame] | 48 | - containerPort: {{ .Values.policymanagementservice.service.targetPort1 }} |
| 49 | protocol: TCP |
| 50 | - containerPort: {{ .Values.policymanagementservice.service.targetPort2 }} |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 51 | protocol: TCP |
| 52 | readinessProbe: |
| 53 | tcpSocket: |
Lathish | 32a43aa | 2020-05-20 23:18:18 +0100 | [diff] [blame] | 54 | port: {{ .Values.policymanagementservice.service.targetPort1 }} |
| 55 | initialDelaySeconds: {{ .Values.policymanagementservice.liveness.initialDelaySeconds }} |
| 56 | periodSeconds: {{ .Values.policymanagementservice.liveness.periodSeconds }} |
| 57 | livenessProbe: |
| 58 | httpGet: |
| 59 | path: /status |
| 60 | port: {{ .Values.policymanagementservice.service.targetPort1 }} |
| 61 | initialDelaySeconds: {{ .Values.policymanagementservice.liveness.initialDelaySeconds }} |
| 62 | periodSeconds: {{ .Values.policymanagementservice.liveness.periodSeconds }} |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 63 | volumeMounts: |
PatrikBuhr | 866a34f | 2021-04-12 17:02:21 +0200 | [diff] [blame^] | 64 | - name: {{ include "common.name.policymanagementservice" . }}-vardata |
| 65 | mountPath: "/var/policy-management-service/database" |
ecaiyanlinux | 1be88e7 | 2020-08-26 12:24:15 +0200 | [diff] [blame] | 66 | - name: {{ include "common.name.policymanagementservice" . }}-policy-config |
| 67 | mountPath: /opt/app/policy-agent/config |
| 68 | - name: {{ include "common.name.policymanagementservice" . }}-policy-data |
PatrikBuhr | 866a34f | 2021-04-12 17:02:21 +0200 | [diff] [blame^] | 69 | mountPath: /opt/app/policy-agent/data |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 70 | volumes: |
ecaiyanlinux | 1be88e7 | 2020-08-26 12:24:15 +0200 | [diff] [blame] | 71 | - name: {{ include "common.name.policymanagementservice" . }}-policy-config |
Lathish | 65cb609 | 2020-03-26 15:06:31 +0000 | [diff] [blame] | 72 | configMap: |
ecaiyanlinux | 1be88e7 | 2020-08-26 12:24:15 +0200 | [diff] [blame] | 73 | name: {{ include "common.name.policymanagementservice" . }}-configmap-config |
| 74 | - name: {{ include "common.name.policymanagementservice" . }}-policy-data |
| 75 | configMap: |
PatrikBuhr | 866a34f | 2021-04-12 17:02:21 +0200 | [diff] [blame^] | 76 | name: {{ include "common.name.policymanagementservice" . }}-configmap-data |
| 77 | - name: {{ include "common.name.policymanagementservice" . }}-vardata |
| 78 | persistentVolumeClaim: |
| 79 | claimName: {{ include "common.name.policymanagementservice" . }}-vardata-pvc |