is there a flag to disable validation for @pulumi....
# general
b
is there a flag to disable validation for @pulumi.kubernetes.yaml.ConfigFile? Working with an extension with some CRD's that don't seem to validate out of the box currently: https://github.com/jetstack/cert-manager/issues/1143
f
I don’t know about a flag on pulumi’s end, but just adding the
caBundle: ""
field works for me
(as mentioned in the issue)
b
was hoping not to have to snowflake their yaml, but fair enough
f
I feel you - but the diff is small and it was worth it to be able to use it in a CD context with raw
kubectl
(and maybe pulumi in the future)
g
Pulumi doesn’t do any special validation for ConfigFile. You should be able to use the
transformations
feature to make the change inline rather than having to change the YAML