Browse Source

Merge pull request #1977 from mattymo/initializers

Disable initializers feature gate if istio is not used
pull/2008/head
Spencer Smith 6 years ago
committed by GitHub
parent
commit
52f8687397
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubespray-defaults/defaults/main.yaml

2
roles/kubespray-defaults/defaults/main.yaml

@ -167,7 +167,7 @@ rbac_enabled: "{{ 'RBAC' in authorization_modes or kubeadm_enabled }}"
## List of key=value pairs that describe feature gates for ## List of key=value pairs that describe feature gates for
## the k8s cluster. ## the k8s cluster.
kube_feature_gates: ['Initializers=true', 'PersistentLocalVolumes={{ local_volumes_enabled|string }}']
kube_feature_gates: ['Initializers={{ istio_enabled|string }}', 'PersistentLocalVolumes={{ local_volumes_enabled|string }}']
# Vault data dirs. # Vault data dirs.
vault_base_dir: /etc/vault vault_base_dir: /etc/vault

Loading…
Cancel
Save