Add CI for all workflow charts #1
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: Move2kube Workflow end to end tests | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
paths: | ||
- 'charts/move2kube/**' | ||
- .github/workflows/move2kube-e2e.yaml | ||
- e2e/move2kube.sh | ||
jobs: | ||
run-m2k-e2e: | ||
Check failure on line 14 in .github/workflows/move2kube-e2e.yaml GitHub Actions / Move2kube Workflow end to end testsInvalid workflow file
|
||
runs-on: ubuntu-24.04 | ||
needs: build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
with: | ||
cluster_name: kind | ||
- name: Create sonataflow-infra namespace | ||
run: | | ||
# Needs to knative events resources in this namespace as the broker url is hard coded at the moment | ||
kubectl create ns sonataflow-infra | ||
- name: Deploy sonataflow-operator | ||
run: | | ||
helm repo add orchestrator https://parodos-dev.github.io/orchestrator-helm-chart | ||
helm install orchestrator orchestrator/orchestrator-k8s | ||
kubectl get sfp -A | ||
kubectl wait --for=condition=Ready=true pods -l "app.kubernetes.io/name=backstage" --timeout=10m | ||
kubectl get pods -o wide | ||
kubectl wait --for=condition=Ready=true pods -l "app=sonataflow-platform" --timeout=180s | ||
kubectl set env deployment/orchestrator-backstage LOG_LEVEL=DEBUG | ||
- name: Deploy Move2kube serverless workflow and its components | ||
env: | ||
SSH_PUB_KEY: ${{secrets.SSH_PUB_KEY}} | ||
SSH_PRIV_KEY: ${{secrets.SSH_PRIV_KEY}} | ||
run: | | ||
echo "${SSH_PUB_KEY}" >> id_rsa.pub | ||
echo "${SSH_PRIV_KEY}" >> id_rsa | ||
PRIV_ID_RSA_PATH=id_rsa PUB_ID_RSA_PATH=id_rsa.pub M2K_HELM_REPO=charts/move2kube/ sh docs/main/move2kube/install_m2k.sh | ||
- name: Run e2e script | ||
run: | | ||
export BACKEND_SECRET=$(kubectl get secret orchestrator-auth -o jsonpath={.data.backend-secret} | base64 -d) | ||
e2e/move2kube.sh | ||
- name: Export kind Logs | ||
if: always() | ||
run: | | ||
kubectl get pods | ||
kind export logs ./kind_logs | ||
- name: Upload Kind Logs | ||
uses: actions/upload-artifact@v4 | ||
# Always run this, even if one of th previous steps failed. | ||
if: always() | ||
with: | ||
name: kind-logs | ||
path: ./kind_logs/ | ||