From 3e3cfcc97b16f8e114031d78ba6399030ff1e708 Mon Sep 17 00:00:00 2001 From: "Timothy St. Clair" Date: Fri, 24 Feb 2017 11:29:07 -0600 Subject: [PATCH] Don't restrict etcd on self host installs b/c a clipped etcd can have weird behaviors once it is loaded --- cmd/kubeadm/app/master/manifests.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/kubeadm/app/master/manifests.go b/cmd/kubeadm/app/master/manifests.go index 03d0dead9df..3c0ae6d11a5 100644 --- a/cmd/kubeadm/app/master/manifests.go +++ b/cmd/kubeadm/app/master/manifests.go @@ -110,7 +110,6 @@ func WriteStaticPodManifests(cfg *kubeadmapi.MasterConfiguration) error { VolumeMounts: []api.VolumeMount{certsVolumeMount(), etcdVolumeMount(), k8sVolumeMount()}, Image: images.GetCoreImage(images.KubeEtcdImage, cfg, kubeadmapi.GlobalEnvParams.EtcdImage), LivenessProbe: componentProbe(2379, "/health"), - Resources: componentResources("200m"), }, certsVolume(cfg), etcdVolume(cfg), k8sVolume(cfg)) etcdPod.Spec.SecurityContext = &api.PodSecurityContext{