14 lines
279 B
Go
14 lines
279 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 ScaleCluster() {
|
|
runPlaybook("kubespray/project/scale.yml", "")
|
|
}
|