Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/addon-manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func main() {
config.AgentImageName,
"The name of the addon agent's image")
flag.BoolVar(&enableKubeApiProxy, "enable-kube-api-proxy", true, "Enable proxy to agent kube-apiserver")
flag.BoolVar(&enableServiceProxy, "enable-service-proxy", false, "Enable service proxy")
flag.BoolVar(&enableServiceProxy, "enable-service-proxy", true, "Enable service proxy")
flag.StringVar(&config.DefaultAddonInstallNamespace, "agent-install-namespace", config.DefaultAddonInstallNamespace,
"The default namespace to install the addon agents.")
flag.StringVar(&imagePullPolicy, "image-pull-policy", string(corev1.PullIfNotPresent), "The image pull policy for the addon manager")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ spec:
{{- break -}}
{{- end -}}
{{- end }}
image: {{ .Values.proxyAgentImage }} # build by the cluster-proxy-addon repo
image: {{ .Values.registry }}/{{ .Values.image }}:{{ .Values.tag }}
imagePullPolicy: IfNotPresent
command:
- /cluster-proxy
Expand Down