blob: a2d20864ae62a430a1c7a6c8554bbf6776ac9516 [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.
14
15---
16apiVersion: apps/v1beta1
17kind: Deployment
18metadata:
David Bainbridge0b44de12019-08-21 21:00:35 +000019 name: voltha-ofagent
David Bainbridge2f9b76f2019-05-15 13:48:11 -070020 serviceAccountName: {{ .Values.serviceaccount }}
21spec:
22 replicas: {{ .Values.replicas.ofagent }}
23 template:
24 metadata:
25 labels:
26 app: ofagent
David Bainbridge1f888042019-06-24 18:02:01 +000027 app.kubernetes.io/name: "open-flow-agent"
28 app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
29 app.kubernetes.io/component: "integration"
30 app.kubernetes.io/part-of: "voltha"
31 app.kubernetes.io/managed-by: {{ quote .Release.Service }}
32 helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
David Bainbridge2f9b76f2019-05-15 13:48:11 -070033 annotations:
34 cni: "calico"
35 spec:
36 terminationGracePeriodSeconds: 10
37 serviceAccountName: {{ .Values.serviceaccount }}
38 containers:
39 - name: ofagent
David Bainbridge5cb5d172019-07-24 02:30:19 +000040 image: {{ tpl .Values.images.ofagent.registry . }}{{ tpl .Values.images.ofagent.repository . }}:{{ tpl ( tpl .Values.images.ofagent.tag . ) . }}
David Bainbridgecd30e542019-05-31 20:52:56 +000041 imagePullPolicy: {{ tpl .Values.images.ofagent.pullPolicy . }}
David Bainbridge2f9b76f2019-05-15 13:48:11 -070042 env:
43 - name: CONTROLLER_SERVICE
44 value: "{{ .Values.services.controller.service }}:{{ .Values.services.controller.port }}"
45 args:
46 - "/ofagent/ofagent/main.py"
47 - "-v"
48 - "--controller=$(CONTROLLER_SERVICE)"
49 - "--grpc-endpoint=voltha-api.{{ .Release.Namespace }}.svc.cluster.local:55555"