Bumps the ci group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/setup-go](https://github.com/actions/setup-go) | `6.2.0` | `6.3.0` | | [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) | `3.1.2` | `4.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6.0.0` | `7.0.0` | | [anchore/sbom-action](https://github.com/anchore/sbom-action) | `0.22.2` | `0.23.0` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6.4.0` | `7.0.0` | Updates `actions/setup-go` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](7a3fe6cf4c...4b73464bb3) Updates `hashicorp/setup-terraform` from 3.1.2 to 4.0.0 - [Release notes](https://github.com/hashicorp/setup-terraform/releases) - [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md) - [Commits](b9cd54a3c3...5e8dbf3c6d) Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](b7c566a772...bbbca2ddaa) Updates `anchore/sbom-action` from 0.22.2 to 0.23.0 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](28d71544de...17ae174017) Updates `goreleaser/goreleaser-action` from 6.4.0 to 7.0.0 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](e435ccd777...ec59f474b9) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: hashicorp/setup-terraform dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: anchore/sbom-action dependency-version: 0.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: goreleaser/goreleaser-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
132 lines
5.3 KiB
YAML
132 lines
5.3 KiB
YAML
name: e2e-bootstrap
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [ 'main', 'release/**' ]
|
|
pull_request:
|
|
branches: [ 'main', 'release/**' ]
|
|
paths-ignore: [ 'docs/**', 'rfcs/**' ]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
e2e-boostrap-github:
|
|
runs-on: ubuntu-latest
|
|
if: (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) && github.actor != 'dependabot[bot]'
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Setup Go
|
|
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
|
|
with:
|
|
go-version: 1.26.x
|
|
cache-dependency-path: |
|
|
**/go.sum
|
|
**/go.mod
|
|
- name: Setup Kubernetes
|
|
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc # v1.14.0
|
|
with:
|
|
version: v0.30.0
|
|
cluster_name: kind
|
|
# The versions below should target the newest Kubernetes version
|
|
# Keep this up-to-date with https://endoflife.date/kubernetes
|
|
node_image: ghcr.io/fluxcd/kindest/node:v1.33.0-amd64
|
|
kubectl_version: v1.33.0
|
|
- name: Setup Kustomize
|
|
uses: fluxcd/pkg/actions/kustomize@9a8c0edd5da84dc51a585738c67e3a3950d7fbf0 # main
|
|
- name: Setup yq
|
|
uses: fluxcd/pkg/actions/yq@9a8c0edd5da84dc51a585738c67e3a3950d7fbf0 # main
|
|
- name: Build
|
|
run: make build-dev
|
|
- name: Set outputs
|
|
id: vars
|
|
run: |
|
|
REPOSITORY_NAME=${{ github.event.repository.name }}
|
|
BRANCH_NAME=${GITHUB_REF##*/}
|
|
COMMIT_SHA=$(git rev-parse HEAD)
|
|
PSEUDO_RAND_SUFFIX=$(echo "${BRANCH_NAME}-${COMMIT_SHA}" | shasum | awk '{print $1}')
|
|
TEST_REPO_NAME="${REPOSITORY_NAME}-${PSEUDO_RAND_SUFFIX}"
|
|
echo "test_repo_name=$TEST_REPO_NAME" >> $GITHUB_OUTPUT
|
|
- name: bootstrap init
|
|
run: |
|
|
./bin/flux bootstrap github --manifests ./manifests/test/ \
|
|
--owner=fluxcd-testing \
|
|
--image-pull-secret=ghcr-auth \
|
|
--registry-creds=fluxcd:$GITHUB_TOKEN \
|
|
--repository=${{ steps.vars.outputs.test_repo_name }} \
|
|
--branch=main \
|
|
--path=test-cluster \
|
|
--team=team-z
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
|
- name: verify image pull secret
|
|
run: |
|
|
kubectl -n flux-system get secret ghcr-auth | grep dockerconfigjson
|
|
- name: bootstrap no-op
|
|
run: |
|
|
./bin/flux bootstrap github --manifests ./manifests/test/ \
|
|
--owner=fluxcd-testing \
|
|
--image-pull-secret=ghcr-auth \
|
|
--repository=${{ steps.vars.outputs.test_repo_name }} \
|
|
--branch=main \
|
|
--path=test-cluster \
|
|
--team=team-z
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
|
- name: bootstrap customize
|
|
run: |
|
|
make setup-bootstrap-patch
|
|
./bin/flux bootstrap github --manifests ./manifests/test/ \
|
|
--owner=fluxcd-testing \
|
|
--repository=${{ steps.vars.outputs.test_repo_name }} \
|
|
--branch=main \
|
|
--path=test-cluster \
|
|
--team=team-z
|
|
if [ $(kubectl get deployments.apps source-controller -o jsonpath='{.spec.template.spec.securityContext.runAsUser}') != "10000" ]; then
|
|
echo "Bootstrap not customized as controller is not running as user 10000" && exit 1
|
|
fi
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
|
GITHUB_REPO_NAME: ${{ steps.vars.outputs.test_repo_name }}
|
|
GITHUB_ORG_NAME: fluxcd-testing
|
|
- name: uninstall
|
|
run: |
|
|
./bin/flux uninstall -s --keep-namespace
|
|
kubectl delete ns flux-system --timeout=10m --wait=true
|
|
- name: test image automation
|
|
run: |
|
|
make setup-image-automation
|
|
./bin/flux bootstrap github --manifests ./manifests/test/ \
|
|
--owner=fluxcd-testing \
|
|
--repository=${{ steps.vars.outputs.test_repo_name }} \
|
|
--branch=main \
|
|
--path=test-cluster \
|
|
--read-write-key
|
|
./bin/flux reconcile image repository podinfo
|
|
./bin/flux reconcile image policy podinfo
|
|
./bin/flux reconcile image update flux-system
|
|
./bin/flux get images all
|
|
./bin/flux -n flux-system events --for ImageUpdateAutomation/flux-system
|
|
kubectl -n flux-system get -o yaml ImageUpdateAutomation flux-system
|
|
kubectl -n flux-system get -o yaml ImageUpdateAutomation flux-system | \
|
|
yq '.status.lastPushCommit | length > 1' | grep 'true'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
|
GITHUB_REPO_NAME: ${{ steps.vars.outputs.test_repo_name }}
|
|
GITHUB_ORG_NAME: fluxcd-testing
|
|
- name: delete repository
|
|
if: ${{ always() }}
|
|
continue-on-error: true
|
|
run: |
|
|
gh repo delete fluxcd-testing/${{ steps.vars.outputs.test_repo_name }} --yes
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
|
- name: Debug failure
|
|
if: failure()
|
|
run: |
|
|
kubectl -n flux-system get all
|
|
kubectl -n flux-system logs deploy/source-controller
|
|
kubectl -n flux-system logs deploy/kustomize-controller
|