Replies: 1 comment
-
|
Also asked https://stackoverflow.com/q/77750481/901597 There's a health check in this article |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm currently working on setting up an ArgoCD deployment using the App-of-Apps pattern. In my scenario, I have a Strimzi application and a Kafka application as part of the parent application. The issue I'm facing is related to the synchronization order. The Strimzi child app needs to be healthy before the Kafka app syncs because the Kafka CRDs required by the Kafka apps are installed by the Strimzi app.
Here's a simplified version of my deployment script:
The problem is that if the Kafka app syncs first, it fails because the Kafka CRDs are missing, and they are supposed to be installed by the Strimzi app.
How can I ensure that the Strimzi child app is healthy before the Kafka app syncs when using the ArgoCD App-of-Apps pattern? Are there any specific syncPolicy configurations or strategies that can help me achieve the desired synchronization order?
Any insights or suggestions would be greatly appreciated. Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions