create ghithub action to run the end-to-end tests without lifecycle manager with nats as a backend #15
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: e2e-w/o-lifecycle-manager | |
env: | |
KYMA_STABILITY: "unstable" | |
KYMA: "./hack/kyma" | |
DOCKER_IMAGE: europe-docker.pkg.dev/kyma-project/dev/eventing-manager:PR-${{ github.event.number }} | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
nats: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install k3d tools | |
run: | | |
make -C hack/ci/ install-k3d-tools | |
- name: Install Kyma CLI & setup k3d cluster using kyma CLI | |
run: | | |
make kyma | |
make -C hack/ci/ create-k3d | |
kubectl version | |
kubectl cluster-info | |
- name: Deploy lifecycle-manager | |
run: | | |
make -C hack/ci/ install-lifecycle-manager | |
- name: Install the latest NATS-manager module template | |
run: | | |
make -C hack/ci/ install-latest-nats-module-template-fast | |
- name: Enable NATS-manager module | |
run: | | |
make -C hack/ci/ enable-nats-module | |
- name: Wait for NATS to become Ready | |
run: | | |
./hack/ci/check-k8s-resource-is-ready.sh | |
- name: Install eventing-manager | |
run: | | |
make install IMG=$DOCKER_IMAGE | |
- name: Wait for the 'pull-eventing-manager-build' job to succeed | |
uses: kyma-project/wait-for-commit-status-action@2b3ffe09af8b6f40e1213d5fb7f91a7bd41ffb20 | |
with: | |
context: "pull-eventing-manager-build" | |
commit_ref: "${{ github.event.pull_request.head.sha }}" # Note: 'github.event.pull_request.head.sha' is not same as 'github.sha' on pull requests. | |
timeout: 600000 # 10 minutes in milliseconds | |
# The check interval is kept long otherwise it will exhaust the GitHub rate limit (More info: https://docs.github.com/en/rest/overview/resources-in-the-rest-api?apiVersion=2022-11-28#rate-limiting) | |
check_interval: 60000 # 1 minute in milliseconds | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
GITHUB_OWNER: "${{ github.repository_owner }}" | |
GITHUB_REPO: "eventing-manager" | |
- name: Deploy the controller to the cluster | |
run: | | |
make deploy IMG=$DOCKER_IMAGE | |
- name: Setup and test the eventing-manager | |
run: | | |
make e2e-setup | |
- name: Setup eventing | |
run: | | |
make e2e-eventing-setup | |
- name: Test eventing | |
run: | | |
make e2e-eventing | |
- name: On error get NATS | |
if: failure() | |
run: | | |
kubectl get nats -n kyma-system -o yaml | |
- name: On error get eventing | |
if: failure() | |
run: | | |
kubectl get eventing -n kyma-system -oyaml | |