Move reprovision cmd line option to new branch
This commit is contained in:
parent
411003f04a
commit
17a814a11a
3 changed files with 5 additions and 20 deletions
|
@ -34,8 +34,7 @@ class CliArgumentsParser(name: String) : CliTargetParser(name) {
|
||||||
),
|
),
|
||||||
module.configFileName,
|
module.configFileName,
|
||||||
module.applicationFileName,
|
module.applicationFileName,
|
||||||
module.submodules,
|
module.submodules
|
||||||
module.reprovision
|
|
||||||
)
|
)
|
||||||
else -> return ServerCliCommand(
|
else -> return ServerCliCommand(
|
||||||
ServerType.valueOf(module.name.uppercase()),
|
ServerType.valueOf(module.name.uppercase()),
|
||||||
|
@ -53,7 +52,6 @@ class CliArgumentsParser(name: String) : CliTargetParser(name) {
|
||||||
var configFileName: ConfigFileName? = null
|
var configFileName: ConfigFileName? = null
|
||||||
var applicationFileName: ApplicationFileName? = null
|
var applicationFileName: ApplicationFileName? = null
|
||||||
var submodules: List<String>? = null
|
var submodules: List<String>? = null
|
||||||
var reprovision: Boolean = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class K3s : ServerSubcommand("k3s", "the k3s module") {
|
class K3s : ServerSubcommand("k3s", "the k3s module") {
|
||||||
|
@ -75,17 +73,11 @@ class CliArgumentsParser(name: String) : CliTargetParser(name) {
|
||||||
"o",
|
"o",
|
||||||
"provisions only parts ",
|
"provisions only parts ",
|
||||||
)
|
)
|
||||||
val cliReprovision by option(
|
|
||||||
ArgType.Boolean,
|
|
||||||
"reprovision",
|
|
||||||
"r",
|
|
||||||
"redo provisioning, deletes old config first"
|
|
||||||
)
|
|
||||||
override fun execute() {
|
override fun execute() {
|
||||||
super.configFileName = cliConfigFileName?.let { ConfigFileName(it) }
|
super.configFileName = cliConfigFileName?.let { ConfigFileName(it) }
|
||||||
super.applicationFileName = cliApplicationFileName?.let { ApplicationFileName(it) }
|
super.applicationFileName = cliApplicationFileName?.let { ApplicationFileName(it) }
|
||||||
super.submodules = if (only != null) listOf(only!!.name.lowercase()) else null
|
super.submodules = if (only != null) listOf(only!!.name.lowercase()) else null
|
||||||
super.reprovision = cliReprovision == true
|
|
||||||
super.parsed = true
|
super.parsed = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,7 @@ class K3sCliCommand(
|
||||||
target: TargetCliCommand,
|
target: TargetCliCommand,
|
||||||
configFileName: ConfigFileName?,
|
configFileName: ConfigFileName?,
|
||||||
val applicationFileName: ApplicationFileName?,
|
val applicationFileName: ApplicationFileName?,
|
||||||
val submodules: List<String>? = null,
|
val submodules: List<String>? = null
|
||||||
val reprovision: Reprovision = false
|
|
||||||
) :
|
) :
|
||||||
ServerCliCommand(
|
ServerCliCommand(
|
||||||
serverType, target, configFileName
|
serverType, target, configFileName
|
||||||
|
|
|
@ -11,17 +11,11 @@ fun Prov.provisionK3s(cli: K3sCliCommand) = task {
|
||||||
|
|
||||||
val grafanaConfigResolved: GrafanaAgentConfigResolved? = findK8sGrafanaConfig(cli.configFileName)?.resolveSecret()
|
val grafanaConfigResolved: GrafanaAgentConfigResolved? = findK8sGrafanaConfig(cli.configFileName)?.resolveSecret()
|
||||||
|
|
||||||
if (cli.submodules == null && !cli.reprovision) {
|
if (cli.submodules == null) {
|
||||||
// full k3s
|
// full k3s
|
||||||
val k3sConfig: K3sConfig = getK3sConfig(cli.configFileName)
|
val k3sConfig: K3sConfig = getK3sConfig(cli.configFileName)
|
||||||
provisionK3sWorker(k3sConfig, grafanaConfigResolved, cli.applicationFileName)
|
provisionK3sWorker(k3sConfig, grafanaConfigResolved, cli.applicationFileName)
|
||||||
}
|
} else {
|
||||||
else if (cli.reprovision) {
|
|
||||||
deprovisionK3sInfra()
|
|
||||||
val k3sConfig: K3sConfig = getK3sConfig(cli.configFileName)
|
|
||||||
provisionK3sWorker(k3sConfig, grafanaConfigResolved, cli.applicationFileName)
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// submodules only
|
// submodules only
|
||||||
provisionGrafanaSanitized(cli.submodules, grafanaConfigResolved)
|
provisionGrafanaSanitized(cli.submodules, grafanaConfigResolved)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue