mirror of https://github.com/k3s-io/k3s
31 lines
744 B
Plaintext
31 lines
744 B
Plaintext
description "Kube-Controller-Manager service"
|
|
author "@jainvipin"
|
|
|
|
respawn
|
|
|
|
# start in conjunction with etcd
|
|
start on started etcd
|
|
stop on stopping etcd
|
|
|
|
pre-start script
|
|
# see also https://github.com/jainvipin/kubernetes-ubuntu-start
|
|
KUBE_CONTROLLER_MANAGER=/opt/bin/$UPSTART_JOB
|
|
if [ -f /etc/default/$UPSTART_JOB ]; then
|
|
. /etc/default/$UPSTART_JOB
|
|
fi
|
|
if [ -f $KUBE_CONTROLLER_MANAGER ]; then
|
|
exit 0
|
|
fi
|
|
exit 22
|
|
end script
|
|
|
|
script
|
|
# modify these in /etc/default/$UPSTART_JOB (/etc/default/docker)
|
|
KUBE_CONTROLLER_MANAGER=/opt/bin/$UPSTART_JOB
|
|
KUBE_CONTROLLER_MANAGER_OPTS=""
|
|
if [ -f /etc/default/$UPSTART_JOB ]; then
|
|
. /etc/default/$UPSTART_JOB
|
|
fi
|
|
exec "$KUBE_CONTROLLER_MANAGER" $KUBE_CONTROLLER_MANAGER_OPTS
|
|
end script
|