29 lines
669 B
Text
29 lines
669 B
Text
|
[Unit]
|
||
|
Description=Kubernetes API Server
|
||
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
||
|
Requires=etcd2.service
|
||
|
After=etcd2.service
|
||
|
|
||
|
[Service]
|
||
|
EnvironmentFile=/etc/network-environment
|
||
|
EnvironmentFile=-/etc/kubernetes/config
|
||
|
EnvironmentFile=-/etc/kubernetes/apiserver
|
||
|
User=kube
|
||
|
ExecStart={{ bin_dir }}/kube-apiserver \
|
||
|
$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
|
||
|
Restart=on-failure
|
||
|
Type=notify
|
||
|
LimitNOFILE=65536
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|