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

fix(charts/prow): adjust the probes #1256

Merged
merged 3 commits into from
Sep 10, 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 charts/prow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# time you make changes to the chart and its templates,
# including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: "0.9.9"
version: "0.9.10"

# This is the version number of the application being deployed.
# This version number should be incremented each time you make changes to the
Expand Down
13 changes: 10 additions & 3 deletions charts/prow/templates/components/tide/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,20 +80,27 @@ spec:
name: kubeconfig
readOnly: true
{{- end }}
startupProbe:
httpGet:
path: /healthz
port: http
initialDelaySeconds: 60
periodSeconds: 10
failureThreshold: 60
livenessProbe:
httpGet:
path: /healthz
port: http
initialDelaySeconds: 30
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
timeoutSeconds: 10
readinessProbe:
httpGet:
path: /healthz/ready
port: http
initialDelaySeconds: 60
periodSeconds: 30
timeoutSeconds: 5
timeoutSeconds: 10
resources:
{{- toYaml .Values.tide.resources | nindent 12 }}
volumes:
Expand Down
6 changes: 6 additions & 0 deletions charts/prow/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,12 @@ tide:
create: true
name: ""
resources: {}
# requests:
# cpu: 1000m
# memory: 4Gi
# limits:
# cpu: 1000m
# memory: 4Gi
kubeconfigSecret: ""

pipeline:
Expand Down
Loading