8 lines
303 B
Bash
Executable file
8 lines
303 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source /etc/kubernetes/apiserver
|
|
source /etc/kubernetes/config
|
|
|
|
ARGS="$@ $KUBE_LOGTOSTDERR $KUBE_LOG_LEVEL $KUBE_ETCD_SERVERS $KUBE_API_ADDRESS $KUBE_API_PORT $KUBELET_PORT $KUBE_ALLOW_PRIV $KUBE_SERVICE_ADDRESSES $KUBE_ADMISSION_CONTROL $KUBE_API_ARGS"
|
|
|
|
exec /usr/bin/kube-apiserver $ARGS
|