forked from cloudfoundry-incubator/kubo-release
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issues cloudfoundry-incubator#371
- Loading branch information
olivier beyler
committed
Mar 12, 2020
1 parent
272b357
commit aa130a6
Showing
4 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
check process kubelet | ||
with pidfile /var/vcap/sys/run/kubernetes/kubelet.pid | ||
start program "/var/vcap/jobs/kubelet/bin/kubelet_ctl start" | ||
stop program "/var/vcap/jobs/kubelet/bin/kubelet_ctl stop" | ||
group vcap | ||
<%= if p("container-runtime").eq? "docker" | ||
depends on docker | ||
%> | ||
<%= if p("container-runtime").eq? "containerd" | ||
depends on containerd | ||
%> | ||
|