Add automation for overrideTargets based on cluster labels #426
+80
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In this PR,
Fleet-92andFleet-93testsoverrideTargetsoption fromfleet.yaml. When it is present in thefleet.yamlit overrides GitRepo targets with targets defined infleet.yamlof matching criteria.Detailed test case behavior as follows:
Fleet-92
Add below target details in
fleet.yaml.fleet.yaml
Create a GitRepo which will target to all available clusters.
Verify that
GitRepowill show banner messageThis GitRepo is not targeting any clustersFleet will not create any resources/bundles because
fleet.yamlfile containsoverrideTargetsoverrideTargetsoption will override GitRepo targets and create bundles/resources to cluster with matching criteria.Fleet-93
Add below target details in
fleet.yaml.fleet.yaml
Create a GitRepo which will target to all available clusters.
Verify that
GitRepowill show banner messageThis GitRepo is not targeting any clustersAdd label to one of the cluster or all clusters mentioned in above
fleet.yamlfile.GitRepo now create bundle as well as resources to the cluster(s) by overriding
GitRepotargets.In this tests, label on the cluster are matched to the label from the
fleet.yamlfile, which allows Fleet to create bundle and install resources.For more documentation about
overrideTargets, click here