Skip to content

Commit

Permalink
fixup! add test helm upgrade path
Browse files Browse the repository at this point in the history
  • Loading branch information
eguzki committed Feb 3, 2025
1 parent 7a06135 commit 68653f9
Showing 1 changed file with 14 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name: Helm Charts Upgrade Test

on:
push:
branches:
- "1123-add-test-helm-upgrade-path"

workflow_dispatch:
inputs:
kuadrantStartVersion:
Expand All @@ -26,8 +30,10 @@ on:
default: kuadrant-system
type: string
jobs:
local-cluster-deploy:
helm-charts-upgrade-test:
runs-on: ubuntu-latest
name: Helm Charts Upgrade Test
if: ${{ github.event_name == 'workflow_dispatch' }}
env:
KIND_CLUSTER_NAME: kuadrant-test
K8S_USER: kuadrant-admin # can be whatever, it does not matter.
Expand Down Expand Up @@ -74,11 +80,16 @@ jobs:
make install-cert-manager
make envoy-gateway-install
make deploy-eg-gateway
- name: Install helm
- name: Install helm and add Kuadrant repo
run: |
make helm
bin/helm repo add kuadrant https://kuadrant.io/helm-charts/ --force-update
bin/helm search repo kuadrant
- name: Install starting version of Kuadrant
run: |
helm install kuadrant kuadrant/kuadrant-operator --namespace kuadrant-system --create-namespace
helm install kuadrant kuadrant/kuadrant-operator \
--wait \
--timeout 2m0s \
--version ${{ inputs.kuadrantStartVersion }} \
--namespace ${{ inputs.kuadrantNamespace }} \
--create-namespace

0 comments on commit 68653f9

Please sign in to comment.