blob: a2d20864ae62a430a1c7a6c8554bbf6776ac9516 [file] [log] [blame]
# Copyright 2019-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: voltha-ofagent
serviceAccountName: {{ .Values.serviceaccount }}
spec:
replicas: {{ .Values.replicas.ofagent }}
template:
metadata:
labels:
app: ofagent
app.kubernetes.io/name: "open-flow-agent"
app.kubernetes.io/version: {{ quote .Chart.AppVersion }}
app.kubernetes.io/component: "integration"
app.kubernetes.io/part-of: "voltha"
app.kubernetes.io/managed-by: {{ quote .Release.Service }}
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
annotations:
cni: "calico"
spec:
terminationGracePeriodSeconds: 10
serviceAccountName: {{ .Values.serviceaccount }}
containers:
- name: ofagent
image: {{ tpl .Values.images.ofagent.registry . }}{{ tpl .Values.images.ofagent.repository . }}:{{ tpl ( tpl .Values.images.ofagent.tag . ) . }}
imagePullPolicy: {{ tpl .Values.images.ofagent.pullPolicy . }}
env:
- name: CONTROLLER_SERVICE
value: "{{ .Values.services.controller.service }}:{{ .Values.services.controller.port }}"
args:
- "/ofagent/ofagent/main.py"
- "-v"
- "--controller=$(CONTROLLER_SERVICE)"
- "--grpc-endpoint=voltha-api.{{ .Release.Namespace }}.svc.cluster.local:55555"