-
Hello, Currently I'm exploring the new Flux a bit and wanted to setup Now to my question, is there a way around this or is it just bad practice to mix two "release-types"? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
DependsOn cannot be cross-resource and this will not be possible, a cross-resource dependency is contraindicated and would not fit with the design, a Kustomization can only depend on another Kustomization. However, this does not mean your use case is impossible. A |
Beta Was this translation helpful? Give feedback.
DependsOn cannot be cross-resource and this will not be possible, a cross-resource dependency is contraindicated and would not fit with the design, a Kustomization can only depend on another Kustomization. However, this does not mean your use case is impossible.
A
HelmRelease
is a custom resource that is first applied by aKustomization
. Any kustomization can absolutely perform health assessments on any custom resources that are created by it, as long as these custom resources report their own status asHelmRelease
does. You can make a Kustomization that does not report as ready until after a HelmRelease is ready (cert-manager) and another Kustomization that depends on it. So a second kus…