-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allow to override ServiceAccount (#52)
* feat: Allow to override ServiceAccount Signed-off-by: Arnaud Hatzenbuhler <[email protected]> * chore: Bump chart version Signed-off-by: Arnaud Hatzenbuhler <[email protected]> --------- Signed-off-by: Arnaud Hatzenbuhler <[email protected]> Co-authored-by: Arnaud Hatzenbuhler <[email protected]>
- Loading branch information
1 parent
afaa107
commit 45472c8
Showing
7 changed files
with
46 additions
and
7 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,16 +1,16 @@ | ||
apiVersion: v2 | ||
name: dependency-track | ||
version: 0.4.0 | ||
version: 0.4.1 | ||
type: application | ||
appVersion: 4.11.0 | ||
description: |- | ||
Dependency-Track is an intelligent Component Analysis platform | ||
that allows organizations to identify and reduce risk in the software supply chain. | ||
home: https://github.com/DependencyTrack/dependency-track | ||
sources: | ||
- https://github.com/DependencyTrack/helm-charts/tree/main/charts/dependency-track | ||
- https://github.com/DependencyTrack/helm-charts/tree/main/charts/dependency-track | ||
icon: https://avatars.githubusercontent.com/u/40258585 | ||
maintainers: | ||
- name: nscuro | ||
email: [email protected] | ||
url: https://github.com/nscuro | ||
- name: nscuro | ||
email: [email protected] | ||
url: https://github.com/nscuro |
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,9 @@ | ||
{{- if .Values.common.serviceAccount.create -}} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "dependencytrack.serviceAccountName" . }} | ||
labels: {{- include "dependencytrack.commonLabels" . | nindent 4 }} | ||
annotations: {{- toYaml .Values.common.serviceAccount.annotations | nindent 4 }} | ||
automountServiceAccountToken: {{ .Values.common.serviceAccount.automount }} | ||
{{- end }} |
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