20 lines
528 B
Plaintext
20 lines
528 B
Plaintext
|
#!/sbin/openrc-run
|
||
|
# Copyright 2017 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
supervisor=supervise-daemon
|
||
|
description="Kubernetes Scheduler service"
|
||
|
|
||
|
if [ -e /var/lib/kubernetes/kube-scheduler-flags.env ]; then
|
||
|
. /var/lib/kubernetes/kube-scheduler-flags.env;
|
||
|
fi
|
||
|
|
||
|
command="/usr/bin/kube-scheduler"
|
||
|
command_args="${command_args} ${KUBE_SCHEDULER_ARGS}"
|
||
|
: ${output_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
||
|
: ${error_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
||
|
|
||
|
depend() {
|
||
|
after net
|
||
|
}
|