github.com/oam-dev/cluster-gateway@v1.9.0/charts/addon-manager/templates/clustergatewayconfiguration.yaml (about) 1 apiVersion: proxy.open-cluster-management.io/v1alpha1 2 kind: ClusterGatewayConfiguration 3 metadata: 4 name: cluster-gateway 5 spec: 6 image: {{ .Values.clusterGateway.image }}:{{ .Values.tag | default (print "v" .Chart.Version) }} 7 installNamespace: {{ .Values.clusterGateway.installNamespace }} 8 secretNamespace: {{ .Values.clusterGateway.secretNamespace }} 9 secretManagement: 10 {{ if .Values.manualSecretManagement }} 11 type: Manual 12 {{ else }} 13 type: ManagedServiceAccount 14 managedServiceAccount: 15 name: cluster-gateway 16 {{ end }} 17 egress: 18 {{ if .Values.konnectivityEgress }} 19 type: ClusterProxy 20 clusterProxy: 21 proxyServerHost: "proxy-entrypoint.open-cluster-management-addon" 22 proxyServerPort: 8090 23 credentials: 24 namespace: open-cluster-management-addon 25 proxyClientCASecretName: proxy-server-ca 26 proxyClientSecretName: proxy-client 27 {{ else }} 28 type: Direct 29 {{ end }}