27 lines
611 B
INI
27 lines
611 B
INI
|
[Unit]
|
||
|
Description=Kubernetes API Service
|
||
|
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
|
||
|
After=network.target
|
||
|
After=etcd.service
|
||
|
|
||
|
[Service]
|
||
|
EnvironmentFile=-/etc/kubernetes/config
|
||
|
EnvironmentFile=-/etc/kubernetes/apiserver
|
||
|
ExecStart=/usr/bin/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
|