diff --git a/submariner/templates/globalnet.yaml b/submariner/templates/globalnet.yaml index 84666a6..a1d894a 100644 --- a/submariner/templates/globalnet.yaml +++ b/submariner/templates/globalnet.yaml @@ -25,8 +25,8 @@ spec: submariner.io/gateway: 'true' containers: - name: {{ template "submariner.fullname" . }}-globalnet - image: submariner-globalnet:local - imagePullPolicy: IfNotPresent + image: {{ .Values.globalnet.image.repository }}:{{ .Values.globalnet.image.tag }} + imagePullPolicy: {{ .Values.globalnet.image.pullPolicy }} env: - name: SUBMARINER_CLUSTERID value: '{{ .Values.submariner.clusterId }}' diff --git a/submariner/values.yaml b/submariner/values.yaml index 1d1274f..8da8c35 100644 --- a/submariner/values.yaml +++ b/submariner/values.yaml @@ -49,6 +49,11 @@ routeAgent: nodeSelector: {} tolerations: [] affinity: {} +globalnet: + image: + repository: submariner-globalnet + tag: local + pullPolicy: IfNotPresent serviceAccounts: engine: create: true