Merge pull request #30901 from ronnielai/percent1

Automatic merge from submit-queue

Enable pod eviction due to disk pressure in GCE.
This commit is contained in:
Kubernetes Submit Queue 2016-08-19 15:46:11 -07:00 committed by GitHub
commit 3fab894d06
2 changed files with 2 additions and 2 deletions

View File

@ -156,4 +156,4 @@ HAIRPIN_MODE="${HAIRPIN_MODE:-promiscuous-bridge}" # promiscuous-bridge, hairpin
E2E_STORAGE_TEST_ENVIRONMENT=${KUBE_E2E_STORAGE_TEST_ENVIRONMENT:-false}
# Evict pods whenever compute resource availability on the nodes gets below a threshold.
EVICTION_HARD="${EVICTION_HARD:-memory.available<100Mi}"
EVICTION_HARD="${EVICTION_HARD:-memory.available<100Mi,nodefs.available<10%}"

View File

@ -186,4 +186,4 @@ E2E_STORAGE_TEST_ENVIRONMENT=${KUBE_E2E_STORAGE_TEST_ENVIRONMENT:-false}
PREPULL_E2E_IMAGES="${PREPULL_E2E_IMAGES:-true}"
# Evict pods whenever compute resource availability on the nodes gets below a threshold.
EVICTION_HARD="${EVICTION_HARD:-memory.available<100Mi,nodefs.available<256Mi}"
EVICTION_HARD="${EVICTION_HARD:-memory.available<100Mi,nodefs.available<10%}"