mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
Bumps the ci group with 4 updates: [korthout/backport-action](https://github.com/korthout/backport-action), [actions/setup-go](https://github.com/actions/setup-go), [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) and [anchore/sbom-action](https://github.com/anchore/sbom-action). Updates `korthout/backport-action` from 2.1.1 to 2.2.0 - [Release notes](https://github.com/korthout/backport-action/releases) - [Commits](08bafb375e...b982d297e3) Updates `actions/setup-go` from 4.1.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](93397bea11...0c52d547c9) Updates `google-github-actions/setup-gcloud` from 1.1.1 to 2.0.0 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Changelog](https://github.com/google-github-actions/setup-gcloud/blob/main/CHANGELOG.md) - [Commits](e30db14379...825196879a) Updates `anchore/sbom-action` from 0.15.0 to 0.15.1 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Commits](fd74a6fb98...5ecf649a41) --- updated-dependencies: - dependency-name: korthout/backport-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: google-github-actions/setup-gcloud dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: anchore/sbom-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
106 lines
4.1 KiB
YAML
106 lines
4.1 KiB
YAML
name: e2e-arm64
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ 'main', 'update-components', 'e2e-*', 'release/**' ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-arm64-kubernetes:
|
|
# Hosted on Equinix
|
|
# Docs: https://github.com/fluxcd/flux2/tree/main/.github/runners
|
|
runs-on: [self-hosted, Linux, ARM64, equinix]
|
|
strategy:
|
|
matrix:
|
|
# Keep this list up-to-date with https://endoflife.date/kubernetes
|
|
# Check which versions are available on DockerHub with 'crane ls kindest/node'
|
|
KUBERNETES_VERSION: [ 1.25.11, 1.26.6, 1.27.3, 1.28.0 ]
|
|
fail-fast: false
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Setup Go
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
|
with:
|
|
go-version: 1.20.x
|
|
cache-dependency-path: |
|
|
**/go.sum
|
|
**/go.mod
|
|
- name: Prepare
|
|
id: prep
|
|
run: |
|
|
ID=${GITHUB_SHA:0:7}-${{ matrix.KUBERNETES_VERSION }}-$(date +%s)
|
|
echo "CLUSTER=arm64-${ID}" >> $GITHUB_OUTPUT
|
|
- name: Build
|
|
run: |
|
|
make build
|
|
- name: Setup Kubernetes Kind
|
|
run: |
|
|
kind create cluster \
|
|
--wait 5m \
|
|
--name ${{ steps.prep.outputs.CLUSTER }} \
|
|
--kubeconfig=/tmp/${{ steps.prep.outputs.CLUSTER }} \
|
|
--image=kindest/node:v${{ matrix.KUBERNETES_VERSION }}
|
|
- name: Run e2e tests
|
|
run: TEST_KUBECONFIG=/tmp/${{ steps.prep.outputs.CLUSTER }} make e2e
|
|
- name: Run multi-tenancy tests
|
|
env:
|
|
KUBECONFIG: /tmp/${{ steps.prep.outputs.CLUSTER }}
|
|
run: |
|
|
./bin/flux install
|
|
./bin/flux create source git flux-system \
|
|
--interval=15m \
|
|
--url=https://github.com/fluxcd/flux2-multi-tenancy \
|
|
--branch=main \
|
|
--ignore-paths="./clusters/**/flux-system/"
|
|
./bin/flux create kustomization flux-system \
|
|
--interval=15m \
|
|
--source=flux-system \
|
|
--path=./clusters/staging
|
|
kubectl -n flux-system wait kustomization/tenants --for=condition=ready --timeout=5m
|
|
kubectl -n apps wait kustomization/dev-team --for=condition=ready --timeout=1m
|
|
kubectl -n apps wait helmrelease/podinfo --for=condition=ready --timeout=1m
|
|
- name: Run monitoring tests
|
|
# Keep this test in sync with https://fluxcd.io/flux/guides/monitoring/
|
|
env:
|
|
KUBECONFIG: /tmp/${{ steps.prep.outputs.CLUSTER }}
|
|
run: |
|
|
./bin/flux create source git flux-monitoring \
|
|
--interval=30m \
|
|
--url=https://github.com/fluxcd/flux2 \
|
|
--branch=${GITHUB_REF#refs/heads/}
|
|
./bin/flux create kustomization kube-prometheus-stack \
|
|
--interval=1h \
|
|
--prune \
|
|
--source=flux-monitoring \
|
|
--path="./manifests/monitoring/kube-prometheus-stack" \
|
|
--health-check-timeout=5m \
|
|
--wait
|
|
./bin/flux create kustomization monitoring-config \
|
|
--depends-on=kube-prometheus-stack \
|
|
--interval=1h \
|
|
--prune=true \
|
|
--source=flux-monitoring \
|
|
--path="./manifests/monitoring/monitoring-config" \
|
|
--health-check-timeout=1m \
|
|
--wait
|
|
kubectl -n flux-system wait kustomization/kube-prometheus-stack --for=condition=ready --timeout=5m
|
|
kubectl -n flux-system wait kustomization/monitoring-config --for=condition=ready --timeout=5m
|
|
kubectl -n monitoring wait helmrelease/kube-prometheus-stack --for=condition=ready --timeout=1m
|
|
- name: Debug failure
|
|
if: failure()
|
|
env:
|
|
KUBECONFIG: /tmp/${{ steps.prep.outputs.CLUSTER }}
|
|
run: |
|
|
kubectl -n flux-system get all
|
|
kubectl -n flux-system describe po
|
|
kubectl -n flux-system logs deploy/source-controller
|
|
kubectl -n flux-system logs deploy/kustomize-controller
|
|
- name: Cleanup
|
|
if: always()
|
|
run: |
|
|
kind delete cluster --name ${{ steps.prep.outputs.CLUSTER }}
|
|
rm /tmp/${{ steps.prep.outputs.CLUSTER }}
|