mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 01:40:07 +00:00
Merge pull request #4643 from timothysc/apiserver-ENV
Fix for failed ENV injection (missing startup parameter)
This commit is contained in:
commit
affe11246e
@ -10,5 +10,8 @@ KUBELET_PORT="--port=10250"
|
|||||||
# You may leave this blank to use the actual hostname
|
# You may leave this blank to use the actual hostname
|
||||||
KUBELET_HOSTNAME="--hostname_override=127.0.0.1"
|
KUBELET_HOSTNAME="--hostname_override=127.0.0.1"
|
||||||
|
|
||||||
|
# location of the api-server
|
||||||
|
KUBELET_API_SERVER="--api_server=127.0.0.1:8080"
|
||||||
|
|
||||||
# Add your own!
|
# Add your own!
|
||||||
KUBELET_ARGS=""
|
KUBELET_ARGS=""
|
||||||
|
@ -11,7 +11,7 @@ EnvironmentFile=-/etc/kubernetes/kubelet
|
|||||||
ExecStart=/usr/bin/kubelet \
|
ExecStart=/usr/bin/kubelet \
|
||||||
$KUBE_LOGTOSTDERR \
|
$KUBE_LOGTOSTDERR \
|
||||||
$KUBE_LOG_LEVEL \
|
$KUBE_LOG_LEVEL \
|
||||||
$KUBE_ETCD_SERVERS \
|
$KUBELET_API_SERVER \
|
||||||
$KUBELET_ADDRESS \
|
$KUBELET_ADDRESS \
|
||||||
$KUBELET_PORT \
|
$KUBELET_PORT \
|
||||||
$KUBELET_HOSTNAME \
|
$KUBELET_HOSTNAME \
|
||||||
|
Loading…
Reference in New Issue
Block a user