You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
installation: Add possibility to specify installation order
Add installation_priority parameter for specification of order
for installation of deployments.
Refs: #2176
Signed-off-by: Konstantin Yarovoy <konstantin.yarovoy@tietoevry.com>
Copy file name to clipboardexpand all lines: CNF_TESTSUITE_YML_USAGE.md
+7
Original file line number
Diff line number
Diff line change
@@ -134,6 +134,10 @@ deployments:
134
134
...
135
135
```
136
136
137
+
##### Installation priority
138
+
139
+
If deployments needed to be installed in specific order, installation_priority parameter should be used. All of the deployments would be installed in order from highest installation priority to lowest. This parameter also affects uninstallation order, it would be reversed: from lowest installation_priority to highest. If not specified, installation priority for deployment is 0.
140
+
137
141
##### helm_charts
138
142
139
143
Deployment, defined by helm chart and helm repository.
@@ -143,6 +147,7 @@ Explanations with example:
143
147
```yaml
144
148
helm_charts:
145
149
- name: coredns # Name of the deployment
150
+
installation_priority: 0 # Installation priority of deployment
146
151
helm_repo_name: stable # Name of the repository for the helm chart
0 commit comments