14 lines
284 B
Go
14 lines
284 B
Go
package kubespray
|
|
|
|
func InstallCluster(tags string) {
|
|
runPlaybook("kubespray/project/cluster.yml", tags)
|
|
}
|
|
|
|
func UpgradeCluster(tags string) {
|
|
runPlaybook("kubespray/project/upgrade_cluster.yml", tags)
|
|
}
|
|
|
|
func ResetCluster() {
|
|
runPlaybook("kubespray/project/reset.yml", "reset")
|
|
}
|