Closed asiegman closed 4 years ago
Refactored the variables I use and how they are applied. Now a single variable. Will make it easier if we want to add the other sections feature gates can apply to.
@Nuru could you please check and approve?
We're going to deprecate this version of the reference architecture in favor of a simpler one.
what
KOPS_KUBE_API_SERVER_FEATURE_GATES
as a comma separated list ofkey=value
pairs for kube api serverKOPS_KUBE_KUBELET_FEATURE_GATES
KOPS_KUBE_PROXY_FEATURE_GATES
Of note, I did not add support for scheduler or controller manager since you're currently not deviating from defaults there. I could add those if you'd like.
Also of note: I don't do error checking on input formatting here, as I felt it would overly complicate the template. I'm also not sure the best way to do that, so there's also that. Things will fail if the environment variables are not set as
feature1="false",feature2="true"
and so on.why
example parsing
references