Skip to content

Commit

Permalink
Merge pull request #14 from dirsigler/add-k8s-matrix-to-ci
Browse files Browse the repository at this point in the history
add k8s matrix
  • Loading branch information
Dennis Irsigler authored Dec 18, 2021
2 parents 8645cc0 + e5e56a6 commit eafe41f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ on:
jobs:
lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
k8s:
- v1.18.15
- v1.19.11
- v1.20.7
- v1.21.2
- v1.22.4
- v1.23.0
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -37,9 +46,11 @@ jobs:
- name: Run chart-testing (lint)
run: ct lint --config .github/ct.yaml --target-branch main

- name: Create kind cluster
- name: Create kind ${{ matrix.k8s }} cluster
uses: helm/[email protected]
if: steps.list-changed.outputs.changed == 'true'
with:
node_image: kindest/node:${{ matrix.k8s }}

- name: Run chart-testing (install)
run: ct install --config .github/ct.yaml --target-branch main
2 changes: 1 addition & 1 deletion charts/uptime-kuma/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ name: uptime-kuma
sources:
- https://github.com/louislam/uptime-kuma
type: application
version: 1.0.0
version: 1.1.0
2 changes: 1 addition & 1 deletion charts/uptime-kuma/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ service:
port: 3001

ingress:
enabled: true
enabled: false
extraLabels: {}
# vhost: uptime-kuma.company.corp
annotations:
Expand Down

0 comments on commit eafe41f

Please sign in to comment.