Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make liveness probe configurable #3

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/trivy/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ spec:
scheme: HTTP
path: /healthz
port: trivy-http
initialDelaySeconds: 5
initialDelaySeconds: {{ default 5 .Values.livenessProbe.initialDelaySeconds }}
periodSeconds: 10
successThreshold: 1
failureThreshold: 10
Expand Down
5 changes: 5 additions & 0 deletions helm/trivy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ tolerations: []
## Ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
podAnnotations: {}

# Allow Trivy to download the database before being killed. In some cases the conection to gsoci can be slow and take longer than the default
# Maybe we can remove this once we have Zot
livenessProbe:
initialDelaySeconds: 300

trivy:
# debugMode the flag to enable Trivy debug mode
debugMode: false
Expand Down