Skip to content

Commit

Permalink
fix(installer): fix ingress chart raw values yaml no alignment (#2244)
Browse files Browse the repository at this point in the history
  • Loading branch information
lkxjtu committed Mar 13, 2023
1 parent 7f2916b commit 779c91f
Showing 1 changed file with 18 additions and 18 deletions.
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

0 comments on commit 779c91f

Please sign in to comment.