wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 1 | ################################################################################ |
| 2 | # Copyright (c) 2019 AT&T Intellectual Property. # |
| 3 | # Copyright (c) 2019 Nokia. # |
| 4 | # # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); # |
| 6 | # you may not use this file except in compliance with the License. # |
| 7 | # You may obtain a copy of the License at # |
| 8 | # # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 # |
| 10 | # # |
| 11 | # Unless required by applicable law or agreed to in writing, software # |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, # |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # |
| 14 | # See the License for the specific language governing permissions and # |
| 15 | # limitations under the License. # |
| 16 | ################################################################################ |
| 17 | {{- $imagectx := dict "ctx" . "defaultregistry" .Values.alarmadapter.image.registry }} |
| 18 | {{- $pullpolicyctx := dict "ctx" . "defaultpullpolicy" .Values.alarmadapter.imagePullPolicy }} |
| 19 | apiVersion: apps/v1 |
| 20 | kind: Deployment |
| 21 | metadata: |
| 22 | name: {{ include "common.deploymentname.alarmadapter" . }} |
| 23 | namespace: {{ include "common.namespace.platform" . }} |
| 24 | labels: |
| 25 | app: {{ include "common.namespace.platform" . }}-{{ include "common.name.alarmadapter" . }} |
| 26 | chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} |
| 27 | release: {{ .Release.Name }} |
| 28 | heritage: {{ .Release.Service }} |
| 29 | spec: |
| 30 | replicas: {{ .Values.alarmadapter.replicaCount }} |
| 31 | selector: |
| 32 | matchLabels: |
| 33 | app: {{ include "common.namespace.platform" . }}-{{ include "common.name.alarmadapter" . }} |
| 34 | release: {{ .Release.Name }} |
| 35 | template: |
| 36 | metadata: |
| 37 | {{- if .Values.alarmadapter.annotations }} |
| 38 | annotations: |
| 39 | {{- .Values.alarmadapter.annotations | nindent 8 -}} |
| 40 | {{ end }} |
| 41 | labels: |
| 42 | app: {{ include "common.namespace.platform" . }}-{{ include "common.name.alarmadapter" . }} |
| 43 | release: {{ .Release.Name }} |
| 44 | spec: |
| 45 | hostname: {{ include "common.name.alarmadapter" . }} |
| 46 | imagePullSecrets: |
| 47 | - name: {{ include "common.dockerregistry.credential" $imagectx }} |
| 48 | containers: |
| 49 | - name: {{ include "common.containername.alarmadapter" . }} |
| 50 | image: {{ include "common.dockerregistry.url" $imagectx }}/{{ .Values.alarmadapter.image.name }}:{{ .Values.alarmadapter.image.tag }} |
| 51 | imagePullPolicy: {{ include "common.dockerregistry.pullpolicy" $pullpolicyctx }} |
wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 52 | #command: ["/bin/sh"] |
| 53 | #args: ["-c", "while true; do echo hello; sleep 10;done"] |
Lusheng Ji | 08315b5 | 2020-06-11 10:27:19 -0400 | [diff] [blame] | 54 | command: ["/bin/sh"] |
| 55 | args: ["-c", "/alarm-adapter -f /alarmadaptercfg/config-file.json"] |
rangajal | 97985d8 | 2020-11-07 09:31:55 +0000 | [diff] [blame] | 56 | env: |
| 57 | - name: PLT_NAMESPACE |
| 58 | value: {{ include "common.namespace.platform" . }} |
wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 59 | envFrom: |
| 60 | - configMapRef: |
| 61 | name: {{ include "common.configmapname.alarmadapter" . }}-env |
wahidw | b01abe7 | 2020-04-15 10:59:51 +0000 | [diff] [blame] | 62 | - configMapRef: |
| 63 | name: {{ include "common.configmapname.dbaas" . }}-appconfig |
wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 64 | volumeMounts: |
Lusheng Ji | 08315b5 | 2020-06-11 10:27:19 -0400 | [diff] [blame] | 65 | - mountPath: /alarmadaptercfg |
| 66 | name: appconfig-file |
Alok Bhatt | f947fc8 | 2020-11-11 04:32:33 +0000 | [diff] [blame] | 67 | subPath: config-file.json |
wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 68 | ports: |
| 69 | - name: "http" |
| 70 | containerPort: {{ include "common.serviceport.alarmadapter.http" . }} |
| 71 | - name: "rmrroute" |
| 72 | containerPort: {{ include "common.serviceport.alarmadapter.rmr.route" . }} |
| 73 | - name: "rmrdata" |
| 74 | containerPort: {{ include "common.serviceport.alarmadapter.rmr.data" . }} |
| 75 | volumes: |
Lusheng Ji | 08315b5 | 2020-06-11 10:27:19 -0400 | [diff] [blame] | 76 | - name: appconfig-file |
wahidw | 324d213 | 2020-03-27 10:10:19 +0000 | [diff] [blame] | 77 | configMap: |
Lusheng Ji | 08315b5 | 2020-06-11 10:27:19 -0400 | [diff] [blame] | 78 | name: {{ include "common.configmapname.alarmadapter" . }}-appconfig |