mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 04:35:13 +03:00
Follow up on 5c94d4afcb
Changes:
* Revert s/KUBELET_KUBEADM_ARGS/KUBELET_ARGS
* Use /var/lib/kubernetes as the placeholder for other control planes env files
20 lines
509 B
Text
Executable file
20 lines
509 B
Text
Executable file
#!/sbin/openrc-run
|
|
# Copyright 2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
supervisor=supervise-daemon
|
|
description="Kubernetes Proxy service"
|
|
|
|
if [ -e /var/lib/kubernetes/kube-proxy-flags.env ]; then
|
|
. /var/lib/kubernetes/kube-proxy-flags.env;
|
|
fi
|
|
|
|
command="/usr/bin/kube-proxy"
|
|
command_args="${command_args} ${KUBE_PROXY_ARGS}"
|
|
: ${output_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
|
: ${error_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
|
|
|
depend() {
|
|
after net
|
|
}
|
|
|