travisghansen / kubernetes-pfsense-controller

Integrate Kubernetes and pfSense
Apache License 2.0
197 stars 22 forks source link

Quote `yes` in declarative example YAML #22

Closed cptaffe closed 1 year ago

cptaffe commented 1 year ago

Yes is interpreted by YAML as a boolean value 1, which prevents the value from syncing to config.xml properly. Quoting to force interpretation as a string allows the sync to produce e.g. <forwardfor>yes</forwardfor>.

travisghansen commented 1 year ago

Thanks!