File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,16 @@ in your deployment repo.
23
23
24
24
## Removing an application for a specific deploy
25
25
26
- To remove an application from being deployed, add or modify the ` uc_skip_components `
27
- annotation on the Kubernetes Secret which defines the cluster in the ` argocd ` namespace.
28
- The ` uc_skip_components ` annotation is a string-ified JSON list of applications to
29
- skip like :
26
+ To remove an application from being deployed, create an ` apps.yaml ` file in your deployment
27
+ repo at ` $DEPLOY_NAME/apps.yaml ` ). The ` apps.yaml ` file
28
+ contains a list of objects, where each object has a ` component ` field that is the name
29
+ of the component (app) and an optional ` skip ` field that can be set to ` true ` :
30
30
31
31
``` yaml
32
- uc_skip_components : |
33
- ["metallb"]
32
+ - component : metallb
33
+ skip : true
34
+ - component : dex
35
+ skip : false # optional, defaults to false
34
36
` ` `
35
37
36
38
## Adding an application to UnderStack
Original file line number Diff line number Diff line change @@ -94,10 +94,6 @@ different configurations.
94
94
: Git reference to use of the deploy repo. Can only be set for ` dev ` env
95
95
clusters.
96
96
97
- ` uc_skip_components `
98
- : string-ified JSON list of components or services from UnderStack to not
99
- install in this cluster.
100
-
101
97
### Deploying your Cluster Config
102
98
103
99
Once you have the Kubernetes secret which defines your cluster config ready
You can’t perform that action at this time.
0 commit comments