I'm struggling to find a way to provide a user input for ovfProperties. ovfProperties expects an array of objects. For example some values from the vRO appliance:
ovfProperties:
- key: features-switch
value: ''
- key: fips-mode
value: 'disabled'
- key: k8s-cluster-cidr
value: '10.244.0.0/22'
- key: k8s-service-cidr
value: '10.244.4.0/22'
Is there any way to provide an array of key/value pairs from input?
My goal is to provide a generic cloud template where customers can deploy any ova and provide the properties themselves.
Thanks!