Update charts for v0.16 #321
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check changes to kustomize do not break user experience | |
# Only runs when kustomize have changed | |
# Test changes to kustomize against released images | |
# TODO: test if changes to charts have been replicated for kustomize | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- kustomize/** | |
# Kind versions used to test Iter8 on different versions of Kubernetes | |
# From: https://github.com/kubernetes-sigs/kind/releases | |
env: | |
versions: | | |
kindest/node:v1.26.3@sha256:61b92f38dff6ccc29969e7aa154d34e38b89443af1a2c14e6cfbd2df6419c66f | |
kindest/node:v1.25.8@sha256:00d3f5314cc35327706776e95b2f8e504198ce59ac545d0200a89e69fce10b7f | |
kindest/node:v1.24.12@sha256:1e12918b8bc3d4253bc08f640a231bb0d3b2c5a9b28aa3f2ca1aee93e1e8db16 | |
kindest/node:v1.23.17@sha256:e5fd1d9cd7a9a50939f9c005684df5a6d145e8d695e78463637b79464292e66c | |
kindest/node:v1.22.17@sha256:c8a828709a53c25cbdc0790c8afe12f25538617c7be879083248981945c38693 | |
kindest/node:v1.21.14@sha256:27ef72ea623ee879a25fe6f9982690a3e370c68286f4356bf643467c552a3888 | |
kindest/node:v1.27.1@sha256:9915f5629ef4d29f35b478e819249e89cfaffcbfeebda4324e5c01d53d937b09 | |
kindest/node:v1.27.0@sha256:c6b22e613523b1af67d4bc8a0c38a4c3ea3a2b8fbc5b367ae36345c9cb844518 | |
jobs: | |
# Get the paths for the Helm charts to lint | |
get_versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get the paths for Helm charts to lint | |
id: set-matrix | |
run: | | |
# Serialize versions into JSON array | |
jsonVersions=$(jq -ncR '[inputs]' <<< "$versions") | |
echo $jsonVersions | |
# Output serialized jsonVersions | |
echo "matrix=$jsonVersions" | sed -e "s/,\"\"//" >> $GITHUB_OUTPUT | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
# TODO: add check to verify when a change is made to charts, a similar change is made to kustomize | |
controller-namespaceScoped: | |
name: Controller namespace scoped test | |
needs: get_versions | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ${{ fromJson(needs.get_versions.outputs.matrix) }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Get modified files in the kustomize/controller folder | |
id: modified-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: kustomize/controller | |
- name: Start kind cluster ${{ matrix.version }} | |
uses: helm/[email protected] | |
if: steps.modified-files.outputs.any_modified == 'true' | |
with: | |
wait: 300s | |
node_image: ${{ matrix.version }} | |
- name: Start controller | |
if: steps.modified-files.outputs.any_modified == 'true' | |
run: | | |
kubectl apply -k kustomize/controller/namespaceScoped | |
- name: Check controller | |
if: steps.modified-files.outputs.any_modified == 'true' | |
run: | | |
kubectl rollout status --watch --timeout=60s statefulset.apps/iter8 | |
controller-clusterScoped: | |
name: Controller cluster scoped test | |
needs: get_versions | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: ${{ fromJson(needs.get_versions.outputs.matrix) }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Get modified files in the kustomize/controller folder | |
id: modified-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: kustomize/controller | |
- name: Start kind cluster ${{ matrix.version }} | |
uses: helm/[email protected] | |
if: steps.modified-files.outputs.any_modified == 'true' | |
with: | |
wait: 300s | |
node_image: ${{ matrix.version }} | |
- name: Start controller | |
if: steps.modified-files.outputs.any_modified == 'true' | |
run: | | |
kubectl apply -k kustomize/controller/clusterScoped | |
- name: Check controller | |
if: steps.modified-files.outputs.any_modified == 'true' | |
run: | | |
kubectl rollout status --watch --timeout=60s statefulset.apps/iter8 |