forked from fluxcd-community/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request fluxcd-community#148 from russellyardley1/main
Introduce support for specifying annotations for the pre-install-job
- Loading branch information
Showing
12 changed files
with
52 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
annotations: | ||
artifacthub.io/changes: | | ||
- "[Added]: Allow disabling CRD installation for specific controllers" | ||
- "[Added]: Allow setting automountServiceAccountToken on the pod spec" | ||
- "[Added]: Support specifying annotationts for the pre-install-job" | ||
apiVersion: v2 | ||
appVersion: 0.37.0 | ||
description: A Helm chart for flux2 | ||
name: flux2 | ||
sources: | ||
- https://github.com/fluxcd-community/helm-charts | ||
type: application | ||
version: 2.3.0 | ||
version: 2.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
suite: test pre-install-job hook | ||
templates: | ||
- pre-install-job.yaml | ||
tests: | ||
- it: should have no annotations added by default | ||
asserts: | ||
- isEmpty: | ||
path: spec.template.metadata.annotations | ||
- it: should have added annotation | ||
set: | ||
cli: | ||
annotations: | ||
name1: value1 | ||
asserts: | ||
- isNotEmpty: | ||
path: spec.template.metadata.annotations | ||
- equal: | ||
path: spec.template.metadata.annotations | ||
value: | ||
name1: value1 | ||
- it: should have added annotations | ||
set: | ||
cli: | ||
annotations: | ||
name1: value1 | ||
name2: value2 | ||
name3: value3 | ||
asserts: | ||
- isNotEmpty: | ||
path: spec.template.metadata.annotations | ||
- equal: | ||
path: spec.template.metadata.annotations | ||
value: | ||
name1: value1 | ||
name2: value2 | ||
name3: value3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ cli: | |
nodeSelector: {} | ||
affinity: {} | ||
tolerations: [] | ||
annotations: {} | ||
|
||
# controllers | ||
|
||
|