From beca9822a59291835612777c9380e6acb66d7f32 Mon Sep 17 00:00:00 2001 From: chrislovecnm Date: Fri, 31 Mar 2017 14:26:49 -0600 Subject: [PATCH] docs --- docs/cluster_spec.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/cluster_spec.md b/docs/cluster_spec.md index af6f7d3037..3ff13dba8d 100644 --- a/docs/cluster_spec.md +++ b/docs/cluster_spec.md @@ -118,6 +118,23 @@ spec: Will result in the flag `--runtime-config=batch/v2alpha1=true,apps/v1alpha1=true`. Note that `kube-apiserver` accepts `true` as a value for switch-like flags. +### kubelet + +This block contains configurations for `kubelet`. See https://kubernetes.io/docs/admin/kubelet/ + +#### Feature Gates + +```yaml +spec: + kubelet: + featureGates: + ExperimentalCriticalPodAnnotation: "true" + AllowExtTrafficLocalEndpoints: "false" +``` + +Will result in the flag `--feature-gates=ExperimentalCriticalPodAnnotation=true,AllowExtTrafficLocalEndpoints=false` + + ### networkID On AWS, this is the id of the VPC the cluster is created in. If creating a cluster from scratch, this field doesn't need to be specified at create time; `kops` will create a `VPC` for you.