You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're looking to feed in multiple vappProperty entries in our downstream clusters using rancher templates. We're currently using v.0.6.1 on Rancher MCM 2.10.0 (k8s 1.30.x).
I believe on the nodeconfig-vsphere.yaml - it's expecting strings for these 4 vapp options. I believe vappProperty should be able to take in some kind of array or key:value data type. It's currently written so that the template accepts a single string:
Does the chart support feeding in multiple key-value pairs into the vappProperty field? What is the expected way of feeding data into it? As it's currently written, I believe it only supports/expects a single string.
If I look at the XML values of vapp on VMware, it does support taking in multiple values under vappProperty:
Could you provide guidance on what has worked for entering multiple fields? I'm also happy to commit the changes to the repo to support list structure in vappProperty.
{{- if .Values.nodepool.vappProperty }}
vappProperty: -|
{{- range .Values.nodepool.vappProperty }}
- {{ . | quote }}
{{- end }}
{{- end -}}
I have a separate ticket w/ RGS on this issue: #7589.
Thanks!
The text was updated successfully, but these errors were encountered:
Hey Rancher Federal,
We're looking to feed in multiple
vappProperty
entries in our downstream clusters using rancher templates. We're currently using v.0.6.1 on Rancher MCM 2.10.0 (k8s 1.30.x).I believe on the
nodeconfig-vsphere.yaml
- it's expecting strings for these 4 vapp options. I believevappProperty
should be able to take in some kind of array or key:value data type. It's currently written so that the template accepts a single string:I've put in this value for
values.yaml
:Does the chart support feeding in multiple key-value pairs into the
vappProperty
field? What is the expected way of feeding data into it? As it's currently written, I believe it only supports/expects a single string.If I look at the XML values of vapp on VMware, it does support taking in multiple values under vappProperty:
Could you provide guidance on what has worked for entering multiple fields? I'm also happy to commit the changes to the repo to support list structure in
vappProperty
.I have a separate ticket w/ RGS on this issue: #7589.
Thanks!
The text was updated successfully, but these errors were encountered: