Skip to content

Commit

Permalink
fix: failing builds
Browse files Browse the repository at this point in the history
* chore: Added liveness and readiness probe to CI values file

* Bumped default app version for unleash and edge
  • Loading branch information
Christopher Kolstad authored Oct 20, 2023
1 parent 2c2bf04 commit ffa119d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python-version: 3.9
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.1
uses: helm/chart-testing-action@v2.4.0
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
python-version: 3.9
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.3.1
uses: helm/chart-testing-action@v2.4.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
Expand Down
4 changes: 2 additions & 2 deletions charts/unleash-edge/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ name: unleash-edge
description: A Helm chart for deploying Unleash Edge to kubernetes
icon: https://docs.getunleash.io/img/logo.svg
type: application
version: 2.0.3
version: 2.0.4

appVersion: "v11.0.2"
appVersion: "v13.1.0"
maintainers:
- name: chriswk
- name: sighphyre
Expand Down
14 changes: 14 additions & 0 deletions charts/unleash-edge/ci/unleash-edge-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,17 @@ ingress:

edge:
upstreamUrl: "http://unleash:4242"

readinessProbe:
enabled: true
path: /internal-backstage/health
initialDelaySeconds: 30
timeoutSeconds: 10
periodSeconds: 10
successThreshold: 5

livenessProbe:
enabled: true
path: /internal-backstage/health
initialDelaySeconds: 30
timeoutSeconds: 10
4 changes: 2 additions & 2 deletions charts/unleash/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "5.4.4"
appVersion: "5.5.6"
dependencies:
- name: postgresql
repository: https://charts.bitnami.com/bitnami
Expand All @@ -15,4 +15,4 @@ sources:
- https://github.com/Unleash/unleash
- https://github.com/Unleash/helm-charts
type: application
version: 3.0.3
version: 3.0.4

0 comments on commit ffa119d

Please sign in to comment.