...
1apiVersion: kubelet.config.k8s.io/v1beta1
2kind: KubeletConfiguration
3cgroupDriver: cgroupfs
4cgroupRoot: /
5
6# Assign a fixed CIDR to the node because we do not run a node controller
7# This MUST be in sync with IPs in:
8# - cluster/gce/config-test.sh and
9# - test/e2e_node/conformance/run_test.sh
10podCIDR: "10.100.0.0/24"
11
12# Aggregate volumes frequently to reduce test wait times
13volumeStatsAggPeriod: 10s
14# Check files frequently to reduce test wait times
15fileCheckFrequency: 10s
16
17evictionPressureTransitionPeriod: 30s
18evictionHard:
19 memory.available: 250Mi
20 nodefs.available: 10%
21 nodefs.inodesFree: 5%
22evictionMinimumReclaim:
23 nodefs.available: 5%
24 nodefs.inodesFree: 5%
25
26serializeImagePulls: false
27
View as plain text