RehanRaza | 164dbb7 | 2020-03-31 17:29:41 +0200 | [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.a1controller" . }} |
| 21 | namespace: {{ include "common.namespace.nonrtric" . }} |
| 22 | generation: 1 |
| 23 | labels: |
| 24 | app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.a1controller" . }} |
| 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: {{ .Values.a1controller.replicaCount }} |
| 32 | selector: |
| 33 | matchLabels: |
| 34 | app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.a1controller" . }} |
| 35 | release: {{ .Release.Name }} |
| 36 | template: |
| 37 | metadata: |
| 38 | labels: |
| 39 | app: {{ include "common.namespace.nonrtric" . }}-{{ include "common.name.a1controller" . }} |
| 40 | release: {{ .Release.Name }} |
| 41 | spec: |
| 42 | hostname: {{ include "common.name.a1controller" . }} |
| 43 | containers: |
| 44 | - name: {{ include "common.containername.a1controller" . }} |
| 45 | image: {{ .Values.a1controller.image.registry }}/{{ .Values.a1controller.image.name }}:{{ .Values.a1controller.image.tag }} |
| 46 | imagePullPolicy: {{ .Values.a1controller.imagePullPolicy }} |
| 47 | env: |
| 48 | - name: MYSQL_ROOT_PASSWORD |
| 49 | value: openECOMP1.0 |
| 50 | - name: SDNC_CONFIG_DIR |
| 51 | value: /opt/onap/sdnc/data/properties |
| 52 | command: |
| 53 | - /opt/onap/sdnc/bin/startODL.sh |
| 54 | ports: |
RehanRaza | d052a25 | 2020-05-27 14:56:30 +0200 | [diff] [blame] | 55 | - containerPort: {{ .Values.a1controller.service.targetPort1 }} |
| 56 | protocol: TCP |
| 57 | - containerPort: {{ .Values.a1controller.service.targetPort2 }} |
RehanRaza | 164dbb7 | 2020-03-31 17:29:41 +0200 | [diff] [blame] | 58 | protocol: TCP |
| 59 | readinessProbe: |
| 60 | tcpSocket: |
RehanRaza | d052a25 | 2020-05-27 14:56:30 +0200 | [diff] [blame] | 61 | port: {{ .Values.a1controller.service.targetPort1 }} |
| 62 | initialDelaySeconds: {{ .Values.a1controller.readiness.initialDelaySeconds }} |
| 63 | periodSeconds: {{ .Values.a1controller.readiness.periodSeconds }} |
| 64 | livenessProbe: |
| 65 | tcpSocket: |
| 66 | port: {{ .Values.a1controller.service.targetPort1 }} |
| 67 | initialDelaySeconds: {{ .Values.a1controller.liveness.initialDelaySeconds }} |
| 68 | periodSeconds: {{ .Values.a1controller.liveness.periodSeconds }} |
RehanRaza | 164dbb7 | 2020-03-31 17:29:41 +0200 | [diff] [blame] | 69 | --- |
| 70 | apiVersion: apps/v1 |
| 71 | kind: Deployment |
| 72 | metadata: |
| 73 | name: db |
| 74 | namespace: {{ include "common.namespace.nonrtric" . }} |
| 75 | labels: |
| 76 | app: db |
| 77 | spec: |
| 78 | selector: |
| 79 | matchLabels: |
| 80 | app: db |
| 81 | template: |
| 82 | metadata: |
| 83 | labels: |
| 84 | app: db |
| 85 | spec: |
| 86 | containers: |
| 87 | - name: sdnc-db-container |
| 88 | image: mysql/mysql-server:5.6 |
| 89 | imagePullPolicy: IfNotPresent |
| 90 | env: |
| 91 | - name: MYSQL_ROOT_HOST |
| 92 | value: '%' |
| 93 | - name: MYSQL_ROOT_PASSWORD |
| 94 | value: openECOMP1.0 |
| 95 | ports: |
| 96 | - containerPort: 3306 |