Skip to content

Commit

Permalink
fix(clustertool): correct kubernetes path for loaded manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivatePuffin committed Oct 24, 2024
1 parent c063804 commit e1539c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions clustertool/pkg/helper/vars.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,17 @@ var (
ClusterEnvFile = filepath.Join(ClusterPath, "/clusterenv.yaml")
TalConfigFile = filepath.Join(ClusterPath, "/talos", "talconfig.yaml")
TalosPath = filepath.Join(ClusterPath, "/talos")
KubernetesPath = filepath.Join(ClusterPath, "/kubernetes")
TalosGenerated = filepath.Join(TalosPath, "/generated")
TalosConfigFile = filepath.Join(TalosGenerated, "talosconfig")
TalSecretFile = filepath.Join(TalosGenerated, "talsecret.yaml")
AllIPs = []string{}
ControlPlaneIPs = []string{}
WorkerIPs = []string{}
ManifestPaths = []string{
filepath.Join(ClusterPath, "flux-system", "flux", "sopssecret.secret.yaml"),
filepath.Join(ClusterPath, "flux-system", "flux", "deploykey.secret.yaml"),
filepath.Join(ClusterPath, "flux-system", "flux", "clustersettings.secret.yaml"),
filepath.Join(KubernetesPath, "flux-system", "flux", "sopssecret.secret.yaml"),
filepath.Join(KubernetesPath, "flux-system", "flux", "deploykey.secret.yaml"),
filepath.Join(KubernetesPath, "flux-system", "flux", "clustersettings.secret.yaml"),
}

KubeFilterStr = []string{
Expand Down

0 comments on commit e1539c6

Please sign in to comment.