Skip to content

Commit

Permalink
fix(dependency-track): use correct values for readinessProbe condition (
Browse files Browse the repository at this point in the history
#178)

Signed-off-by: Rufina Talalaeva <[email protected]>
  • Loading branch information
rufusnufus committed Aug 4, 2022
1 parent 3738d2e commit 6e5bc63
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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.4.0
version: 1.4.1
icon: https://raw.githubusercontent.com/DependencyTrack/branding/master/dt-logo-black-text.svg
keywords:
- security
Expand Down
2 changes: 1 addition & 1 deletion charts/dependency-track/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# dependency-track

![Version: 1.4.0](https://img.shields.io/badge/Version-1.4.0-informational?style=flat-square) ![AppVersion: 4.5.0](https://img.shields.io/badge/AppVersion-4.5.0-informational?style=flat-square)
![Version: 1.4.1](https://img.shields.io/badge/Version-1.4.1-informational?style=flat-square) ![AppVersion: 4.5.0](https://img.shields.io/badge/AppVersion-4.5.0-informational?style=flat-square)

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.

Expand Down
2 changes: 1 addition & 1 deletion charts/dependency-track/templates/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
successThreshold: {{ .Values.apiserver.livenessProbe.successThreshold }}
failureThreshold: {{ .Values.apiserver.livenessProbe.failureThreshold }}
{{- end }}
{{- if .Values.apiserver.livenessProbe.enabled }}
{{- if .Values.apiserver.readinessProbe.enabled }}
readinessProbe:
httpGet:
port: api
Expand Down
2 changes: 1 addition & 1 deletion charts/dependency-track/templates/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
successThreshold: {{ .Values.frontend.livenessProbe.successThreshold }}
failureThreshold: {{ .Values.frontend.livenessProbe.failureThreshold }}
{{- end }}
{{- if .Values.apiserver.livenessProbe.enabled }}
{{- if .Values.frontend.readinessProbe.enabled }}
readinessProbe:
httpGet:
port: http
Expand Down

0 comments on commit 6e5bc63

Please sign in to comment.