From a238d90d496dbe9d519aec69a21713760421d3e0 Mon Sep 17 00:00:00 2001 From: Robert Bailey Date: Wed, 10 Feb 2016 14:38:44 -0800 Subject: [PATCH] Remove the SecurityContextDeny admission controller so that the testing environment matches the production environment. This was removed from config-default.sh in #16986. --- cluster/gce/config-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index 958a000e1df..e0e9934f65e 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -117,7 +117,7 @@ if [[ "${ENABLE_NODE_AUTOSCALER}" == "true" ]]; then TARGET_NODE_UTILIZATION="${KUBE_TARGET_NODE_UTILIZATION:-0.7}" fi -ADMISSION_CONTROL="${KUBE_ADMISSION_CONTROL:-NamespaceLifecycle,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota,PersistentVolumeLabel}" +ADMISSION_CONTROL="${KUBE_ADMISSION_CONTROL:-NamespaceLifecycle,LimitRanger,ServiceAccount,ResourceQuota,PersistentVolumeLabel}" # Optional: if set to true kube-up will automatically check for existing resources and clean them up. KUBE_UP_AUTOMATIC_CLEANUP=${KUBE_UP_AUTOMATIC_CLEANUP:-false}