Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(installer): fix ingress chart raw values yaml no alignment #2244

Merged
Merged
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
36 changes: 18 additions & 18 deletions cmd/tke-installer/app/installer/installer.go
Original file line number Diff line number Diff line change
Expand Up @@ -2221,33 +2221,33 @@ func (t *TKE) installIngressChart(ctx context.Context) error {
controller:
name: controller
image:
registry: registry.tke.com
image: library/ingress-nginx-controller
tag: "v1.1.3"
digest: ""
pullPolicy: IfNotPresent
runAsUser: 101
allowPrivilegeEscalation: true
registry: registry.tke.com
image: library/ingress-nginx-controller
tag: "v1.1.3"
digest: ""
pullPolicy: IfNotPresent
runAsUser: 101
allowPrivilegeEscalation: true
containerName: controller
containerPort:
http: 80
https: 443
http: 80
https: 443
dnsPolicy: ClusterFirstWithHostNet
hostNetwork: true
ingressClass: nginx
kind: DaemonSet
nodeSelector:
node-role.kubernetes.io/master: ""
node-role.kubernetes.io/master: ""
service:
enabled: false
enabled: false
admissionWebhooks:
patch:
enabled: true
image:
registry: registry.tke.com
image: library/kube-webhook-certgen
tag: "v1.1.1"
digest: ""
patch:
enabled: true
image:
registry: registry.tke.com
image: library/kube-webhook-certgen
tag: "v1.1.1"
digest: ""
`
tkeRegistry := &types.PlatformApp{
HelmInstallOptions: &helmaction.InstallOptions{
Expand Down