David K. Bainbridge | 707022f | 2020-01-23 14:15:07 -0800 | [diff] [blame] | 1 | # Copyright 2020-present Open Networking Foundation |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 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. |
Matteo Scandolo | b65a5a7 | 2021-04-30 16:16:05 -0700 | [diff] [blame^] | 14 | {{- $log_level := tpl .Values.ofagent.log_level . | upper -}} |
| 15 | {{- $onosReplicas := default 1 .Values.onos_classic.replicas -}} |
| 16 | {{- $onosOfPort := default 6653 .Values.onos_classic.onosOfPort -}} |
| 17 | {{- $infraName := default "voltha-infra" .Values.global.voltha_infra_name -}} |
| 18 | {{- $infraNamespaces := default "infra" .Values.global.voltha_infra_namespace -}} |
| 19 | {{- $controllers := dict "controllers" (list) -}} |
| 20 | {{- range $i, $e := until ($onosReplicas | int) -}} |
| 21 | {{- $port := add $onosOfPort $i -}} |
| 22 | {{- $current := printf "%s-onos-classic-%d.%s-onos-classic-hs.%s.svc:%d" $infraName $i $infraName $infraNamespaces $port -}} |
| 23 | {{- $controllers := (mustAppend $controllers.controllers $current) | set $controllers "controllers" -}} |
| 24 | {{- end -}} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 25 | --- |
David Bainbridge | c437c3e | 2020-06-25 14:48:24 -0700 | [diff] [blame] | 26 | apiVersion: apps/v1 |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 27 | kind: Deployment |
| 28 | metadata: |
David Bainbridge | 2bdd430 | 2020-06-09 17:13:18 -0700 | [diff] [blame] | 29 | name: "{{ template "fullname" . }}-ofagent" |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 30 | namespace: {{ .Release.Namespace }} |
David Bainbridge | 534a73d | 2019-08-30 18:57:23 +0000 | [diff] [blame] | 31 | {{- if or (hasKey .Values "extra_deployment_labels") (hasKey .Values "ofagent_deployment_labels") }} |
| 32 | labels: |
| 33 | {{- if hasKey .Values "extra_deployment_labels" }} |
| 34 | {{- range $key, $val := .Values.extra_deployment_labels }} |
| 35 | {{ $key }}: {{ $val | quote }} |
| 36 | {{- end }} |
| 37 | {{- end }} |
| 38 | {{- if hasKey .Values "ofagent_deployment_labels" }} |
| 39 | {{- range $key, $val := .Values.ofagent_deployment_labels }} |
| 40 | {{ $key }}: {{ $val | quote }} |
| 41 | {{- end }} |
| 42 | {{- end }} |
| 43 | {{- end }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 44 | spec: |
| 45 | replicas: {{ .Values.replicas.ofagent }} |
David Bainbridge | c437c3e | 2020-06-25 14:48:24 -0700 | [diff] [blame] | 46 | selector: |
| 47 | matchLabels: |
| 48 | app: ofagent |
| 49 | release: {{ .Release.Name }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 50 | template: |
| 51 | metadata: |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 52 | namespace: {{ .Release.Namespace }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 53 | labels: |
| 54 | app: ofagent |
David Bainbridge | 8595b3b | 2020-06-05 12:23:05 -0700 | [diff] [blame] | 55 | release: {{ .Release.Name }} |
David Bainbridge | 1f88804 | 2019-06-24 18:02:01 +0000 | [diff] [blame] | 56 | app.kubernetes.io/name: "open-flow-agent" |
| 57 | app.kubernetes.io/version: {{ quote .Chart.AppVersion }} |
| 58 | app.kubernetes.io/component: "integration" |
| 59 | app.kubernetes.io/part-of: "voltha" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 60 | app.kubernetes.io/stack: "{{ .Values.global.stack_name }}" |
David Bainbridge | 1f88804 | 2019-06-24 18:02:01 +0000 | [diff] [blame] | 61 | app.kubernetes.io/managed-by: {{ quote .Release.Service }} |
| 62 | helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" |
David Bainbridge | 534a73d | 2019-08-30 18:57:23 +0000 | [diff] [blame] | 63 | {{- if hasKey .Values "extra_pod_labels" }} |
| 64 | {{- range $key, $val := .Values.extra_pod_labels }} |
| 65 | {{ $key }}: {{ $val | quote }} |
| 66 | {{- end }} |
| 67 | {{- end }} |
| 68 | {{- if hasKey .Values "ofagent_pod_labels" }} |
| 69 | {{- range $key, $val := .Values.ofagent_pod_labels }} |
| 70 | {{ $key }}: {{ $val | quote }} |
| 71 | {{- end }} |
| 72 | {{- end }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 73 | spec: |
| 74 | terminationGracePeriodSeconds: 10 |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 75 | {{- if .Values.securityContext.enabled }} |
| 76 | securityContext: |
| 77 | runAsUser: {{ .Values.securityContext.runAsUser }} |
| 78 | runAsGroup: {{ .Values.securityContext.runAsGroup }} |
| 79 | fsGroup: {{ .Values.securityContext.fsGroup }} |
| 80 | {{- end }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 81 | containers: |
| 82 | - name: ofagent |
David Bainbridge | 60018ec | 2020-06-02 13:32:30 -0700 | [diff] [blame] | 83 | image: '{{ tpl .Values.images.ofagent.registry . }}{{ tpl .Values.images.ofagent.repository . }}:{{ tpl .Values.images.ofagent.tag . }}' |
| 84 | imagePullPolicy: {{ tpl .Values.images.ofagent.pullPolicy . }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 85 | env: |
Matteo Scandolo | aca9cbb | 2020-11-06 14:14:10 -0800 | [diff] [blame] | 86 | - name: COMPONENT_NAME |
| 87 | valueFrom: |
| 88 | fieldRef: |
| 89 | fieldPath: metadata.labels['app.kubernetes.io/name'] |
| 90 | - name: KV_STORE_DATAPATH_PREFIX |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 91 | value: {{ .Values.global.kv_store_data_prefix }} |
David Bainbridge | 2f9b76f | 2019-05-15 13:48:11 -0700 | [diff] [blame] | 92 | args: |
David K. Bainbridge | 707022f | 2020-01-23 14:15:07 -0800 | [diff] [blame] | 93 | - "/app/ofagent" |
Matteo Scandolo | b65a5a7 | 2021-04-30 16:16:05 -0700 | [diff] [blame^] | 94 | {{- range $controllers.controllers }} |
| 95 | - "--controller={{ . }}" |
| 96 | {{- end }} |
Jonathan Hart | 3980b74 | 2020-04-20 11:00:54 -0700 | [diff] [blame] | 97 | {{- range .Values.services.controller }} |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 98 | - "--controller={{ tpl .address $ }}" |
Jonathan Hart | 3980b74 | 2020-04-20 11:00:54 -0700 | [diff] [blame] | 99 | {{- end }} |
David Bainbridge | 2bdd430 | 2020-06-09 17:13:18 -0700 | [diff] [blame] | 100 | - "--voltha={{ template "fullname" . }}-api.{{ .Release.Namespace }}.svc:55555" |
Neha Sharma | 1a3da1c | 2020-06-24 13:12:48 +0000 | [diff] [blame] | 101 | - "--kv_store_address={{ .Values.services.etcd.address }}" |
divyadesai | 0b0e4a1 | 2020-03-12 09:33:56 +0000 | [diff] [blame] | 102 | - "--kv_store_type=etcd" |
Neha Sharma | e5767ea | 2020-04-08 13:39:57 +0000 | [diff] [blame] | 103 | - "--kv_store_request_timeout=60s" |
divyadesai | 0b0e4a1 | 2020-03-12 09:33:56 +0000 | [diff] [blame] | 104 | - "--log_level={{ $log_level }}" |
Matteo Scandolo | 06ee58c | 2021-05-26 15:28:51 -0700 | [diff] [blame] | 105 | - "--device-refresh-interval={{ .Values.ofagent.device_refresh_interval }}" |
David Bainbridge | 32ac607 | 2019-10-21 20:29:52 +0000 | [diff] [blame] | 106 | - "--probe=:8080" |
Matteo Scandolo | b4c5f4e | 2020-11-11 12:05:23 -0800 | [diff] [blame] | 107 | - "--trace_enabled={{ .Values.global.tracing.enabled }}" |
| 108 | - "--trace_agent_address={{ tpl .Values.services.tracing_agent.address . }}" |
| 109 | - "--log_correlation_enabled={{ .Values.global.log_correlation.enabled }}" |
David Bainbridge | 16b19cc | 2020-05-29 11:50:44 -0700 | [diff] [blame] | 110 | {{- if .Values.securityContext.enabled }} |
| 111 | securityContext: |
| 112 | allowPrivilegeEscalation: false |
| 113 | {{- end }} |
David Bainbridge | 32ac607 | 2019-10-21 20:29:52 +0000 | [diff] [blame] | 114 | livenessProbe: |
| 115 | httpGet: |
| 116 | path: /healthz |
| 117 | port: 8080 |
| 118 | initialDelaySeconds: 10 |
| 119 | periodSeconds: 5 |
| 120 | readinessProbe: |
| 121 | httpGet: |
| 122 | path: /readz |
| 123 | port: 8080 |
| 124 | initialDelaySeconds: 10 |
| 125 | periodSeconds: 5 |