Skip to content

Commit

Permalink
run k8s 1.24 in ci for skipper
Browse files Browse the repository at this point in the history
Skipper's installation requires the creation of a PodSecurityPolicy
object. Since PSP was removed from k8s 1.25, we need to run tests for
skipper on k8s 1.24.

Signed-off-by: Sanskar Jaiswal <[email protected]>
  • Loading branch information
aryan9600 committed Sep 6, 2023
1 parent a2ebc3d commit dfb5afb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,18 @@ jobs:
uses: actions/checkout@v3
- name: Setup Kubernetes
uses: helm/[email protected]
if: ${{ matrix.provider }} != 'skipper'
with:
version: v0.20.0
cluster_name: kind
node_image: kindest/node:v1.27.3@sha256:9dd3392d79af1b084671b05bcf65b21de476256ad1dcc853d9f3b10b4ac52dde
- name: Setup Kubernetes for skipper
uses: helm/[email protected]
if: ${{ matrix.provider }} == 'skipper'
with:
version: v0.20.0
cluster_name: kind
node_image: kindest/node:v1.24.12@sha256:0bdca26bd7fe65c823640b14253ea7bac4baad9336b332c94850f84d8102f873
- name: Build container image
run: |
docker build -t test/flagger:latest .
Expand Down

0 comments on commit dfb5afb

Please sign in to comment.