Skip to content

Commit

Permalink
Skeleton of upgrade test
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKalke committed Jan 26, 2024
1 parent 8f4f3e1 commit 4546d73
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/upgrade-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# https://github.com/kyma-project/warden/releases/latest/download/warden-chart.tgz
name: Upgrade test

on:
push:
branches: [ "main", "release-*" ]
pull_request:
paths-ignore:
- 'docs/**'
- 'examples/**'
types:
- opened
- reopened
- synchronize
- ready_for_review
- converted_to_draft

jobs:
upgrade-test:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- name: create single cluster
uses: AbsaOSS/k3d-action@4e8b3239042be1dc0aed6c5eb80c13b18200fc79 #v2.4.0
with:
cluster-name: "k3dCluster"
args: >-
--agents 1
--port 80:80@loadbalancer
--port 443:443@loadbalancer
--wait
- name: install latest warden operator from the release
run: helm install warden https://github.com/kyma-project/warden/releases/latest/download/warden-chart.tgz
- name: run integration tests
run: make test

0 comments on commit 4546d73

Please sign in to comment.