Use ofagent-go as default, still support ofagent-py (and split the images name/tag)
Change-Id: If7f1b7b5daa587fd27241f79682095518f0a7f0f
diff --git a/voltha/values.yaml b/voltha/values.yaml
index 8f52628..941abea 100644
--- a/voltha/values.yaml
+++ b/voltha/values.yaml
@@ -16,7 +16,7 @@
serviceaccount: voltha-serviceaccount
private_etcd_cluster: true
private_kafka_cluster: true
-use_ofagent_go: false
+use_ofagent_go: true
# Default Values
# The following are the default values used for every container in the
@@ -88,7 +88,13 @@
# Define Docker images to be used
images:
- ofagent:
+ ofagent_go:
+ registry: '{{ .Values.defaults.image_registry }}'
+ repository: '{{ .Values.defaults.image_org }}ofagent-go'
+ tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}1.1.4{{- end }}{{- else }}1.1.4{{- end }}'
+ pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
+
+ ofagent_py:
registry: '{{ .Values.defaults.image_registry }}'
repository: '{{ .Values.defaults.image_org }}voltha-ofagent'
tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.2.4{{- end }}{{- else }}2.2.4{{- end }}'
@@ -99,4 +105,3 @@
repository: '{{ .Values.defaults.image_org }}voltha-rw-core'
tag: '{{- if hasKey .Values.defaults "image_tag" }}{{- if .Values.defaults.image_tag }}{{ .Values.defaults.image_tag }}{{- else }}2.3.2{{- end }}{{- else }}2.3.2{{- end }}'
pullPolicy: '{{ .Values.defaults.image_pullPolicy }}'
-