Application set static and dynamic deployment #27281
Unanswered
keerthi1923
asked this question in
Q&A
Replies: 0 comments
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.
Uh oh!
There was an error while loading. Please reload this page.
-
We are implementing a single Argo CD application that supports both static (main/dev) and dynamic (feature branch) deployments in one shared namespace, where feature branches can be deployed directly without merging and override the baseline deployment. does the application set support both static and dynamic deployment?
This is my detailed requirement which i was trying to implementtatic Deployment:
The main/dev branch acts as the baseline deployment.
Dynamic Deployment:
Feature branches (test-dev-proj-*) are deployed directly without merging and override the existing deployment in the same namespace.
The system must:
Use a single Argo CD application
Dynamically switch targetRevision between main/dev and feature branches
Deploy both application code and Helm values from the selected branch
Ensure feature branch deployments do not require PR/MR
Avoid creating multiple environments or namespaces
All development and testing should happen directly via feature branch deployments, with the ability to revert back to baseline (main/dev) at any time.
Beta Was this translation helpful? Give feedback.
All reactions