1
0
mirror of synced 2026-02-13 21:16:57 +00:00

Add cluster-domain option for bootstrap command

Signed-off-by: Léopold Jacquot <leopold.jacquot@infomaniak.com>
This commit is contained in:
Léopold Jacquot
2020-12-12 16:11:55 +01:00
parent b6c63a1aa4
commit 4d7df52dbe
8 changed files with 31 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ type Options struct {
ManifestFile string
Timeout time.Duration
TargetPath string
ClusterDomain string
}
func MakeDefaultOptions() Options {
@@ -53,6 +54,7 @@ func MakeDefaultOptions() Options {
ManifestFile: "gotk-components.yaml",
Timeout: time.Minute,
TargetPath: "",
ClusterDomain: "cluster.local",
}
}