Skip to content

Commit

Permalink
Merge pull request #120 from buildbuddy-io/configurable_initial_delay
Browse files Browse the repository at this point in the history
Make initialDelaySeconds configurable
  • Loading branch information
tylerwilliams authored Feb 11, 2025
2 parents f391c8a + 8b5419b commit 7059159
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ Thank you for your interest in contributing! Please see the [BuildBuddy Contribu
* Must pass CI jobs for linting and installing changed charts
* Any change to a chart requires a version bump following [semver](https://semver.org/) principles

Once changes have been merged, the release job will automatically run to package and release changed charts.
Once changes have been merged, the release job will automatically run to package and release changed charts.
2 changes: 1 addition & 1 deletion charts/buildbuddy-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: BuildBuddy Enterprise
name: buildbuddy-enterprise
version: 0.0.338 # Chart version
version: 0.0.339 # Chart version
appVersion: 2.127.0 # Version of deployed app
keywords:
- buildbuddy
Expand Down
2 changes: 1 addition & 1 deletion charts/buildbuddy-enterprise/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ spec:
containerPort: {{ .Values.service.internalMetricsPort }}
{{ end }}
livenessProbe:
initialDelaySeconds: 10
initialDelaySeconds: {{ .Values.initialDelaySeconds | default 10 }}
timeoutSeconds: 5
failureThreshold: 3
httpGet:
Expand Down

0 comments on commit 7059159

Please sign in to comment.