adamant-kite-43734
08/01/2023, 1:02 AMcreamy-pencil-82913
08/01/2023, 1:38 AMcreamy-pencil-82913
08/01/2023, 1:39 AMcreamy-pencil-82913
08/01/2023, 1:44 AMfancy-barista-28405
08/16/2023, 10:11 PMfancy-barista-28405
08/16/2023, 10:15 PMcreamy-pencil-82913
08/16/2023, 10:21 PMcreamy-pencil-82913
08/16/2023, 10:22 PMfancy-barista-28405
08/16/2023, 10:24 PMcreamy-pencil-82913
08/16/2023, 10:27 PMcreamy-pencil-82913
08/16/2023, 10:27 PMcreamy-pencil-82913
08/16/2023, 10:27 PMfancy-barista-28405
08/16/2023, 10:28 PM# specify rancher helm chart values deployed into downstream cluster
rancherValues: {}
and right next to it is:
# general RKE options
rke:
# specify rancher helm chart values deployed into downstream cluster
chartValues: {}
in file https://github.com/rancher/cluster-template-examplescreamy-pencil-82913
08/16/2023, 10:29 PMfancy-barista-28405
08/16/2023, 10:29 PMwooden-easter-8724
10/06/2023, 7:01 AM# specify rancher helm chart values deployed into downstream cluster
> rancherValues: {}
>
> and right next to it is:
> # general RKE options
> rke:
> # specify rancher helm chart values deployed into downstream cluster
> chartValues: {}
I thought the same thing when I saw this, but there’s nothing in the example repo that handles this (or several other things, for that matter). I ended up modifying charts/templates/cluster.yaml
with this:
rkeConfig:
{{- if .Values.rke.chartValues }}
chartValues:
{{ toYaml .Values.rke.chartValues | indent 6 }}
{{- end }}
wooden-easter-8724
10/06/2023, 7:10 AMrke:
chartValues:
rke2-ingress-nginx:
controller:
watchIngressWithoutClass: false