e2e: Run integration test suite on OpenShift
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
57
.github/workflows/e2e-openshift.yaml
vendored
57
.github/workflows/e2e-openshift.yaml
vendored
@@ -30,6 +30,11 @@ jobs:
|
|||||||
uses: fluxcd/pkg/actions/kustomize@main
|
uses: fluxcd/pkg/actions/kustomize@main
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make build-dev
|
run: make build-dev
|
||||||
|
- name: Create repository
|
||||||
|
run: |
|
||||||
|
gh repo create --private --add-readme fluxcd-testing/${{ steps.prep.outputs.cluster }}
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
||||||
- name: Create cluster
|
- name: Create cluster
|
||||||
id: create-cluster
|
id: create-cluster
|
||||||
uses: replicatedhq/compatibility-actions/create-cluster@v1
|
uses: replicatedhq/compatibility-actions/create-cluster@v1
|
||||||
@@ -39,22 +44,54 @@ jobs:
|
|||||||
kubernetes-version: "4.15.0-okd"
|
kubernetes-version: "4.15.0-okd"
|
||||||
ttl: 20m
|
ttl: 20m
|
||||||
cluster-name: "${{ steps.prep.outputs.cluster }}"
|
cluster-name: "${{ steps.prep.outputs.cluster }}"
|
||||||
- name: Setup kubeconfig
|
- name: Create kubeconfig
|
||||||
|
id: kubeconfig
|
||||||
run: |
|
run: |
|
||||||
echo "${{ steps.create-cluster.outputs.cluster-kubeconfig }}" > kubeconfig.yaml
|
KPATH="$(git rev-parse --show-toplevel)/bin/kubeconfig.yaml"
|
||||||
- name: Install Flux
|
echo "::add-mask::${{ steps.create-cluster.outputs.cluster-kubeconfig }}" > $KPATH
|
||||||
|
echo "KUBECONFIG=$KPATH" >> $GITHUB_ENV
|
||||||
|
- name: Run flux bootstrap
|
||||||
run: |
|
run: |
|
||||||
./bin/flux install --manifests ./manifests/openshift/ --kubeconfig=kubeconfig.yaml
|
./bin/flux bootstrap git --manifests ./manifests/openshift/ \
|
||||||
- name: Debug
|
--components-extra=image-reflector-controller,image-automation-controller \
|
||||||
|
--url=https://github.com/fluxcd-testing/${{ steps.prep.outputs.cluster }} \
|
||||||
|
--branch=main \
|
||||||
|
--path=clusters/openshift \
|
||||||
|
--token-auth
|
||||||
|
env:
|
||||||
|
GIT_PASSWORD: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
||||||
|
- name: Run flux check
|
||||||
run: |
|
run: |
|
||||||
kubectl -n flux-system get all --kubeconfig=kubeconfig.yaml
|
./bin/flux check
|
||||||
kubectl -n flux-system describe pods --kubeconfig=kubeconfig.yaml
|
- name: Run flux reconcile
|
||||||
kubectl -n flux-system logs deploy/source-controller --kubeconfig=kubeconfig.yaml
|
run: |
|
||||||
kubectl -n flux-system logs deploy/kustomize-controller --kubeconfig=kubeconfig.yaml
|
./bin/flux reconcile ks flux-system --with-source
|
||||||
- name: Remove cluster
|
./bin/flux get all
|
||||||
|
./bin/flux events
|
||||||
|
- name: Collect reconcile logs
|
||||||
|
if: ${{ always() }}
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
kubectl -n flux-system get all
|
||||||
|
kubectl -n flux-system describe pods
|
||||||
|
kubectl -n flux-system logs deploy/source-controller
|
||||||
|
kubectl -n flux-system logs deploy/kustomize-controller
|
||||||
|
kubectl -n flux-system logs deploy/notification-controller
|
||||||
|
- name: Delete flux
|
||||||
|
run: |
|
||||||
|
./bin/flux uninstall -s --keep-namespace
|
||||||
|
kubectl delete ns flux-system --wait
|
||||||
|
- name: Delete cluster
|
||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
uses: replicatedhq/replicated-actions/remove-cluster@v1
|
uses: replicatedhq/replicated-actions/remove-cluster@v1
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
with:
|
with:
|
||||||
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
|
api-token: ${{ secrets.REPLICATED_API_TOKEN }}
|
||||||
cluster-id: ${{ steps.create-cluster.outputs.cluster-id }}
|
cluster-id: ${{ steps.create-cluster.outputs.cluster-id }}
|
||||||
|
- name: Delete repository
|
||||||
|
if: ${{ always() }}
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
gh repo delete fluxcd-testing/${{ steps.prep.outputs.cluster }} --yes
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITPROVIDER_BOT_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user