Add longhorn

This commit is contained in:
Daniel Cosme
2026-05-01 18:47:52 -04:00
parent 66b97f6215
commit b1a5bf1d96
5 changed files with 21 additions and 8 deletions
+9 -6
View File
@@ -20,12 +20,15 @@ func init() {
}
func Stack() stack.Stack {
s := stack.NewStack("longhorn", map[string]any{
"namespace": Namespace,
"longhorn-stack": LonghornHelmSource(),
"release": LonghornHelmRelease(),
})
return s
kz := kube.NewKuztomizedStack(
meta,
map[string]any{
"namespace": Namespace,
"longhorn-stack": LonghornHelmSource(),
"release": LonghornHelmRelease(),
},
)
return kz.Stack("longhorn")
}
func LonghornHelmSource() source.HelmRepository {