Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 1 | # 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. |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 14 | {{- if and (hasKey .Values "use_openonu_adapter_go") .Values.use_openonu_adapter_go }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 15 | {{- $log_level := tpl .Values.adapter_open_onu.log_level . | upper }} |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 16 | --- |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 17 | apiVersion: apps/v1 |
| 18 | kind: Deployment |
| 19 | metadata: |
David Bainbridge | 2bdd430 | 2020-06-09 17:13:18 -0700 | [diff] [blame] | 20 | name: "{{ template "fullname" . }}" |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 21 | namespace: {{ .Release.Namespace }} |
| 22 | {{- if or (hasKey .Values "extra_deployment_labels") (hasKey .Values "openonu_deployment_labels") }} |
| 23 | labels: |
| 24 | {{- if hasKey .Values "extra_deployment_labels" }} |
| 25 | {{- range $key, $val := .Values.extra_deployment_labels }} |
| 26 | {{ $key }}: {{ $val | quote }} |
| 27 | {{- end }} |
| 28 | {{- end }} |
| 29 | {{- if hasKey .Values "openonu_deployment_labels" }} |
| 30 | {{- range $key, $val := .Values.openonu_deployment_labels }} |
| 31 | {{ $key }}: {{ $val | quote }} |
| 32 | {{- end }} |
| 33 | {{- end }} |
| 34 | {{- end }} |
| 35 | spec: |
| 36 | replicas: {{ .Values.replicas.adapter_open_onu }} |
| 37 | selector: |
| 38 | matchLabels: |
| 39 | app: adapter-open-onu |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 40 | release: {{ .Release.Name }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 41 | template: |
| 42 | metadata: |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 43 | namespace: {{ .Release.Namespace }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 44 | labels: |
| 45 | app: adapter-open-onu |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 46 | release: {{ .Release.Name }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 47 | app.kubernetes.io/name: "adapter-open-onu" |
| 48 | app.kubernetes.io/version: {{ quote .Chart.AppVersion }} |
| 49 | app.kubernetes.io/component: "adapter" |
| 50 | app.kubernetes.io/part-of: "voltha" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 51 | app.kubernetes.io/stack: "{{ .Values.global.stack_name }}" |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 52 | app.kubernetes.io/managed-by: {{ quote .Release.Service }} |
| 53 | helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" |
| 54 | {{- if hasKey .Values "extra_pod_labels" }} |
| 55 | {{- range $key, $val := .Values.extra_pod_labels }} |
| 56 | {{ $key }}: {{ $val | quote }} |
| 57 | {{- end }} |
| 58 | {{- end }} |
| 59 | {{- if hasKey .Values "openonu_pod_labels" }} |
| 60 | {{- range $key, $val := .Values.openonu_pod_labels }} |
| 61 | {{ $key }}: {{ $val | quote }} |
| 62 | {{- end }} |
| 63 | {{- end }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 64 | spec: |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 65 | {{- if .Values.securityContext.enabled }} |
| 66 | securityContext: |
| 67 | runAsUser: {{ .Values.securityContext.runAsUser }} |
| 68 | runAsGroup: {{ .Values.securityContext.runAsGroup }} |
| 69 | fsGroup: {{ .Values.securityContext.fsGroup }} |
| 70 | {{- end }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 71 | containers: |
| 72 | - name: adapter-open-onu |
Matteo Scandolo | efcb439 | 2020-11-17 10:21:02 -0800 | [diff] [blame] | 73 | image: '{{ tpl .Values.images.adapter_open_onu_go.registry . }}{{ tpl .Values.images.adapter_open_onu_go.repository . }}:{{ tpl ( tpl .Values.images.adapter_open_onu_go.tag . ) . }}' |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 74 | imagePullPolicy: {{ tpl .Values.images.adapter_open_onu_go.pullPolicy . }} |
Matteo Scandolo | 846f19c | 2020-04-24 16:39:17 -0700 | [diff] [blame] | 75 | env: |
| 76 | - name: COMPONENT_NAME |
| 77 | valueFrom: |
| 78 | fieldRef: |
| 79 | fieldPath: metadata.labels['app.kubernetes.io/name'] |
Matteo Scandolo | fcbb925 | 2020-11-19 12:19:02 -0800 | [diff] [blame] | 80 | - name: KV_STORE_DATAPATH_PREFIX |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 81 | value: {{ tpl .Values.adapter_open_onu.kv_store_data_prefix . }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 82 | args: |
Matteo Scandolo | 4f6d59a | 2020-03-25 10:37:18 -0700 | [diff] [blame] | 83 | - "/app/openonu" |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 84 | - "--banner=true" |
| 85 | - "--kafka_reconnect_retries=-1" |
Matteo Scandolo | 1d80abd | 2021-01-28 11:30:12 -0800 | [diff] [blame] | 86 | - "--kafka_adapter_address={{ tpl .Values.services.kafka.adapter.address . }}" |
| 87 | - "--kafka_cluster_address={{ tpl .Values.services.kafka.cluster.address . }}" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 88 | - "--core_topic={{ tpl .Values.adapter_open_onu.topics.core_topic . }}" |
| 89 | - "--adapter_topic={{ tpl .Values.adapter_open_onu.topics.adapter_open_onu_topic . }}" |
Matteo Scandolo | 1d80abd | 2021-01-28 11:30:12 -0800 | [diff] [blame] | 90 | - "--kv_store_address={{ tpl .Values.services.etcd.address . }}" |
Andrea Campanella | 6838a80 | 2020-11-19 15:50:23 +0100 | [diff] [blame] | 91 | - "--kv_store_request_timeout={{ tpl .Values.adapter_open_onu.kv_store_timeout . }}" |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 92 | - "--log_level={{ $log_level }}" |
| 93 | - "--probe_port=8080" |
Girish Gowdra | 3152aca | 2020-11-19 15:57:58 -0800 | [diff] [blame] | 94 | - "--accept_incr_evto={{ tpl .Values.adapter_open_onu.incremental_evto_update . }}" |
Himani Chawla | 5a33c50 | 2020-09-25 13:08:33 +0530 | [diff] [blame] | 95 | - "--max_timeout_interadapter_comm={{ tpl .Values.adapter_open_onu.max_timeout_interadapter_comm . }}" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 96 | - "--trace_enabled={{ .Values.global.tracing.enabled }}" |
| 97 | - "--trace_agent_address={{ tpl .Values.services.tracing_agent.address . }}" |
Andrea Campanella | aa46d3f | 2021-01-19 09:19:02 +0100 | [diff] [blame] | 98 | - "--allowed_onu_vendors={{ template "allowed_onu_vendors" . }}" |
Girish Gowdra | e05c018 | 2021-01-28 15:02:37 -0800 | [diff] [blame] | 99 | - "--metrics_enabled={{ .Values.global.metrics.enabled }}" |
Holger Hildebrandt | 29c63c9 | 2021-02-05 14:58:50 +0000 | [diff] [blame^] | 100 | - "--mib_audit_interval={{ .Values.global.mib_audit.interval }}" |
David Bainbridge | 2bdd430 | 2020-06-09 17:13:18 -0700 | [diff] [blame] | 101 | {{- if .Values.securityContext.enabled }} |
| 102 | securityContext: |
| 103 | allowPrivilegeEscalation: false |
| 104 | {{- end }} |
Holger Hildebrandt | b67c330 | 2020-02-25 13:48:59 +0000 | [diff] [blame] | 105 | livenessProbe: |
| 106 | httpGet: |
| 107 | path: /healthz |
| 108 | port: 8080 |
| 109 | initialDelaySeconds: 10 |
| 110 | periodSeconds: 5 |
| 111 | readinessProbe: |
| 112 | httpGet: |
| 113 | path: /readz |
| 114 | port: 8080 |
| 115 | initialDelaySeconds: 10 |
| 116 | periodSeconds: 5 |
Matteo Scandolo | 4f6d59a | 2020-03-25 10:37:18 -0700 | [diff] [blame] | 117 | {{- end }} |