Add feature_gates var for customizing Kubernetes feature gates (#1520)

This commit is contained in:
Hassan Zamani
2017-08-25 00:48:38 +04:30
committed by Matthew Mosesohn
parent 71dca67ca2
commit 01ce09f343
6 changed files with 16 additions and 1 deletions

View File

@@ -84,6 +84,9 @@ spec:
{% if authorization_modes %}
- --authorization-mode={{ authorization_modes|join(',') }}
{% endif %}
{% if kube_feature_gates %}
- --feature-gates={{ kube_feature_gates|join(',') }}
{% endif %}
{% if apiserver_custom_flags is string %}
- {{ apiserver_custom_flags }}
{% else %}