Skip to content

Commit

Permalink
Encapsulate service-account in if-blocks (#202)
Browse files Browse the repository at this point in the history
* Encapsulate service-account in if-blocks

Signed-off-by: Alexander Zrinyi <[email protected]>

* Bump version to 1.5.3

Signed-off-by: Alexander Zrinyi <[email protected]>

* Bump azure/setup-helm from 3.3 to 3.4 (#203)

Bumps [azure/setup-helm](https://github.com/azure/setup-helm) from 3.3 to 3.4.
- [Release notes](https://github.com/azure/setup-helm/releases)
- [Commits](Azure/setup-helm@v3.3...v3.4)

---
updated-dependencies:
- dependency-name: azure/setup-helm
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Signed-off-by: Alexander Zrinyi <[email protected]>

* Fix if-statement

Signed-off-by: Alexander Zrinyi <[email protected]>

Signed-off-by: Alexander Zrinyi <[email protected]>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Alexander Zrinyi <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 28, 2022
1 parent 46b13cf commit d2a15e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/dependency-track/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: |
Dependency-Track is an intelligent Software Supply Chain Component Analysis platform that allows organizations to identify and reduce risk from the use of third-party and open source components. Dependency-Track takes a unique and highly beneficial approach by leveraging the capabilities of Software Bill-of-Materials (SBOM). This approach provides capabilities that traditional Software Composition Analysis (SCA) solutions cannot achieve.
name: dependency-track
home: https://dependencytrack.org/
version: 1.5.2
version: 1.5.3
icon: https://raw.githubusercontent.com/DependencyTrack/branding/master/dt-logo-black-text.svg
keywords:
- security
Expand Down
2 changes: 2 additions & 0 deletions charts/dependency-track/templates/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets: {{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.apiserver.serviceAccount.create}}
serviceAccountName: {{ include "common.names.fullname" . }}-apiserver
{{- end }}
securityContext: {{- toYaml .Values.apiserver.podSecurityContext | nindent 8 }}
{{- with .Values.apiserver.initContainers }}
initContainers: {{- toYaml . | nindent 6 }}
Expand Down
2 changes: 2 additions & 0 deletions charts/dependency-track/templates/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ spec:
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets: {{- toYaml . | nindent 6 }}
{{- end }}
{{- if .Values.frontend.serviceAccount.create}}
serviceAccountName: {{ include "common.names.fullname" . }}-frontend
{{- end }}
securityContext: {{- toYaml .Values.frontend.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}-frontend
Expand Down

0 comments on commit d2a15e1

Please sign in to comment.