mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
15 lines
354 B
Text
Executable file
15 lines
354 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 API Server"
|
|
command="/usr/bin/kube-apiserver"
|
|
: ${output_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
|
: ${error_log:=/var/log/$RC_SVCNAME/$RC_SVCNAME.log}
|
|
|
|
|
|
depend() {
|
|
after net
|
|
}
|
|
|