Merge pull request #1232 from rsmitty/custom-flags

add ability for custom flags
This commit is contained in:
Spencer Smith
2017-04-17 14:01:32 -04:00
committed by GitHub
7 changed files with 46 additions and 1 deletions

View File

@@ -80,6 +80,13 @@ spec:
{% endif %}
{% if kube_api_anonymous_auth is defined and kube_version | version_compare('v1.5', '>=') %}
- --anonymous-auth={{ kube_api_anonymous_auth }}
{% endif %}
{% if apiserver_custom_flags is string %}
- {{ apiserver_custom_flags }}
{% else %}
{% for flag in apiserver_custom_flags %}
- {{ flag }}
{% endfor %}
{% endif %}
livenessProbe:
httpGet: