blob: f10d8b9106b173e7176d487bd8e0dc72fa68a85d [file] [log] [blame]
David Bainbridge2f9b76f2019-05-15 13:48:11 -07001# Copyright 2019-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Rohan Agrawal250ec822020-01-14 12:16:18 +000014{{- $log_level := tpl .Values.rw_core.log_level . | upper }}
Kent Hagerman1b333b92019-07-22 16:57:20 -040015---
David Bainbridgec437c3e2020-06-25 14:48:24 -070016apiVersion: apps/v1
David Bainbridge2f9b76f2019-05-15 13:48:11 -070017kind: Deployment
18metadata:
David Bainbridge2bdd4302020-06-09 17:13:18 -070019 name: "{{ template "fullname" . }}-rw-core"
David Bainbridge8595b3b2020-06-05 12:23:05 -070020 namespace: {{ .Release.Namespace }}
Scott Baker5b2eaa82019-12-17 11:24:00 -080021 {{- if or (hasKey .Values "extra_deployment_labels") (hasKey .Values "rw_core_deployment_labels") }}
David Bainbridge534a73d2019-08-30 18:57:23 +000022 labels:
Scott Baker5b2eaa82019-12-17 11:24:00 -080023 {{- if hasKey .Values "extra_deployment_labels" }}
24 {{- range $key, $val := .Values.extra_deployment_labels }}
David Bainbridge534a73d2019-08-30 18:57:23 +000025 {{ $key }}: {{ $val | quote }}
26 {{- end }}
27 {{- end }}
Scott Baker5b2eaa82019-12-17 11:24:00 -080028 {{- if hasKey .Values "rw_core_deployment_labels" }}
29 {{- range $key, $val := .Values.rw_core_deployment_labels }}
David Bainbridge534a73d2019-08-30 18:57:23 +000030 {{ $key }}: {{ $val | quote }}
31 {{- end }}
32 {{- end }}
33 {{- end }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070034spec:
35 replicas: 1
David Bainbridge8595b3b2020-06-05 12:23:05 -070036 selector:
37 matchLabels:
38 app: rw-core
39 release: {{ .Release.Name }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070040 template:
41 metadata:
David Bainbridge8595b3b2020-06-05 12:23:05 -070042 namespace: {{ .Release.Namespace }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070043 labels:
44 app: rw-core
David Bainbridge8595b3b2020-06-05 12:23:05 -070045 release: {{ .Release.Name }}
David Bainbridge1f888042019-06-24 18:02:01 +000046 app.kubernetes.io/name: "read-write-core"
Scott Baker5b2eaa82019-12-17 11:24:00 -080047 app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
David Bainbridge1f888042019-06-24 18:02:01 +000048 app.kubernetes.io/component: "core"
49 app.kubernetes.io/part-of: "voltha"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080050 app.kubernetes.io/stack: "{{ .Values.global.stack_name }}"
Scott Baker5b2eaa82019-12-17 11:24:00 -080051 app.kubernetes.io/managed-by: {{ quote .Release.Service }}
52 helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
53 {{- if hasKey .Values "extra_pod_labels" }}
54 {{- range $key, $val := .Values.extra_pod_labels }}
David Bainbridge534a73d2019-08-30 18:57:23 +000055 {{ $key }}: {{ $val | quote }}
56 {{- end }}
57 {{- end }}
Scott Baker5b2eaa82019-12-17 11:24:00 -080058 {{- if hasKey .Values "rw_core_pod_labels" }}
59 {{- range $key, $val := .Values.rw_core_pod_labels }}
David Bainbridge534a73d2019-08-30 18:57:23 +000060 {{ $key }}: {{ $val | quote }}
61 {{- end }}
62 {{- end }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070063 spec:
David Bainbridge16b19cc2020-05-29 11:50:44 -070064 {{- if .Values.securityContext.enabled }}
65 securityContext:
66 runAsUser: {{ .Values.securityContext.runAsUser }}
67 runAsGroup: {{ .Values.securityContext.runAsGroup }}
68 fsGroup: {{ .Values.securityContext.fsGroup }}
69 {{- end }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070070 containers:
71 - name: voltha
Scott Baker5b2eaa82019-12-17 11:24:00 -080072 image: '{{ tpl .Values.images.rw_core.registry . }}{{ tpl .Values.images.rw_core.repository . }}:{{ tpl .Values.images.rw_core.tag . }}'
73 imagePullPolicy: {{ tpl .Values.images.rw_core.pullPolicy . }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070074 env:
75 - name: NAMESPACE
Scott Baker5b2eaa82019-12-17 11:24:00 -080076 value: voltha
David Bainbridge2f9b76f2019-05-15 13:48:11 -070077 - name: POD_IP
78 valueFrom:
79 fieldRef:
80 fieldPath: status.podIP
divyadesai5085aba2020-03-02 07:03:53 +000081 - name: COMPONENT_NAME
82 valueFrom:
83 fieldRef:
84 fieldPath: metadata.labels['app.kubernetes.io/name']
serkant.uluderyaf1b8cc72020-05-13 23:26:51 -070085 - name: KV_STORE_DATAPATH_PREFIX
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080086 value: {{ tpl .Values.rw_core.kv_store_data_prefix . }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070087 args:
88 - "/app/rw_core"
David K. Bainbridgef7d4e602020-07-09 18:28:55 +000089 - "--kv_store_type=etcd"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080090 - "--kv_store_address={{ tpl .Values.services.etcd.address . }}"
David K. Bainbridgef7d4e602020-07-09 18:28:55 +000091 - "--grpc_address=0.0.0.0:50057"
92 - "--banner"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -080093 - "--kafka_adapter_address={{ tpl .Values.services.kafka.adapter.address . }}"
94 - "--kafka_cluster_address={{ tpl .Values.services.kafka.cluster.address . }}"
95 - "--rw_core_topic={{ tpl .Values.rw_core.topics.core_topic . }}"
David K. Bainbridgef7d4e602020-07-09 18:28:55 +000096 - "--core_timeout={{ tpl .Values.rw_core.core_timeout . }}"
97 - "--timeout_long_request={{ tpl .Values.rw_core.timeout_long_request . }}"
98 - "--timeout_request={{ tpl .Values.rw_core.timeout_request . }}"
99 - "--log_level={{ $log_level }}"
100 - "--probe_address=:8080"
Matteo Scandolob4c5f4e2020-11-11 12:05:23 -0800101 - "--trace_enabled={{ .Values.global.tracing.enabled }}"
102 - "--trace_agent_address={{ tpl .Values.services.tracing_agent.address . }}"
103 - "--log_correlation_enabled={{ .Values.global.log_correlation.enabled }}"
David Bainbridge2f9b76f2019-05-15 13:48:11 -0700104 ports:
105 - containerPort: 50057
Scott Baker5b2eaa82019-12-17 11:24:00 -0800106 name: grpc
David Bainbridge16b19cc2020-05-29 11:50:44 -0700107 {{- if .Values.securityContext.enabled }}
108 securityContext:
109 allowPrivilegeEscalation: false
110 {{- end }}
David Bainbridgec349f642019-09-24 19:20:47 +0000111 livenessProbe:
112 httpGet:
113 path: /healthz
114 port: 8080
115 initialDelaySeconds: 3
116 periodSeconds: 3
117 readinessProbe:
118 httpGet:
119 path: /readz
120 port: 8080
121 initialDelaySeconds: 3
122 periodSeconds: 3