Commit b385a94f authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #41614 from feiskyer/fix-user

Automatic merge from submit-queue Defaulting client certs owner to current user if not speicified **What this PR does / why we need it**: Defaulting client certs owner to current user if not speicified. **Which issue this PR fixes** Fixes #41560. **Release note**: ```release-note NONE ``` cc/ @sttts @liggitt
parents ba6dca94 a106ef38
...@@ -42,6 +42,8 @@ CGROUPS_PER_QOS=${CGROUPS_PER_QOS:-false} ...@@ -42,6 +42,8 @@ CGROUPS_PER_QOS=${CGROUPS_PER_QOS:-false}
CGROUP_ROOT=${CGROUP_ROOT:-""} CGROUP_ROOT=${CGROUP_ROOT:-""}
# name of the cgroup driver, i.e. cgroupfs or systemd # name of the cgroup driver, i.e. cgroupfs or systemd
CGROUP_DRIVER=${CGROUP_DRIVER:-""} CGROUP_DRIVER=${CGROUP_DRIVER:-""}
# owner of client certs, default to current user if not specified
USER=${USER:-$(whoami)}
# enables testing eviction scenarios locally. # enables testing eviction scenarios locally.
EVICTION_HARD=${EVICTION_HARD:-"memory.available<100Mi"} EVICTION_HARD=${EVICTION_HARD:-"memory.available<100Mi"}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment