Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

flpath751 - Add MTA v6.2.2 and MTA v7.0.2 #198

Closed
wants to merge 19 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/mta-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,3 @@ jobs:
with:
name: kind-logs
path: ./kind_logs/

1 change: 0 additions & 1 deletion .github/workflows/mta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ jobs:
with:
workflow_id: mta
secrets: inherit

148 changes: 148 additions & 0 deletions .github/workflows/mtav6.2.2-e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
name: MTA v6.2.2 Workflow end to end tests

on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'mtav6.2.2/**'
- 'pipeline/**'
- 'e2e/mtav6.2.2.sh'
- '!mtav6.2.2/*.svg'
- .github/workflows/mtav6.2.2-e2e.yaml
- .github/workflows/main.yml

jobs:
build:
uses: ./.github/workflows/main.yml
secrets: inherit
with:
workflow_id: mtav6.2.2
it_mode: true
run-e2e:
runs-on: ubuntu-latest
needs: build
steps:
- name: Create k8s Kind Cluster
uses: helm/[email protected]
with:
cluster_name: kind
- name: Install Konveyor 0.2 (MTA upstream equivalent to 6.2)
run: |
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/master/deploy/upstream/quickstart/crds.yaml
# give the apiserver time
sleep 5s
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/master/deploy/upstream/quickstart/olm.yaml

# install konveyor operator
# version 0.2 is MTA 6.2 and 0.3 is 7.x
kubectl create -f https://operatorhub.io/install/konveyor-0.2/konveyor-operator.yaml
# give the apiserver time
echo "sleeping 120 seconds to give time for the operator to pull images and start"
sleep 120s
kubectl get csv -A
# TODO its a bit smelly that the csv name is coded here.
kubectl wait --for=jsonpath='{.status.phase}=Succeeded' -n my-konveyor-operator csv/konveyor-operator.v0.2.1
kubectl get pods -A
kubectl wait --for=condition=Ready=true pods -l "name=tackle-operator" -n my-konveyor-operator --timeout=240s
kubectl get crds
kubectl create -f - << EOF
kind: Tackle
apiVersion: tackle.konveyor.io/v1alpha1
metadata:
name: tackle
namespace: my-konveyor-operator
spec:
feature_auth_required: false
hub_database_volume_size: 1Gi
hub_bucket_volume_size: 1Gi
EOF

kubectl get pods -n my-konveyor-operator
sleep 60s
kubectl get tackle -n my-konveyor-operator -o yaml
echo "wait for tackle ui to be ready"
kubectl get pods -n my-konveyor-operator
sleep 30s
kubectl wait --for=condition=Ready=true pods -l "app.kubernetes.io/name=tackle-ui" -n my-konveyor-operator --timeout=240s
# now MTA workflow can execute agains tackle-ui.my-konveyor-operator.svc:8080

- name: Deploy Janus-idp-workflow-helm (janus + sonataflow-opertor)
run: |
helm repo add janus-idp-workflows https://rgolangh.github.io/janus-idp-workflows-helm/
helm install janus-idp-workflows janus-idp-workflows/janus-idp-workflows \
--set backstage.upstream.backstage.image.tag=1.1 \
-f https://raw.githubusercontent.com/rgolangh/janus-idp-workflows-helm/main/charts/kubernetes/orchestrator/values-k8s.yaml

echo "sleep bit long till the PV for data index and kaniko cache is ready. its a bit slow. TODO fixit"
kubectl get pv
sleep 3m
kubectl get sfp -A
kubectl wait --for=condition=Ready=true pods -l "app.kubernetes.io/name=backstage" --timeout=240s
kubectl get pods -o wide
kubectl wait --for=condition=Ready=true pods -l "app=sonataflow-platform" --timeout=240s

- name: Download sonataflow artifacts generated manifests
uses: actions/download-artifact@v3
with:
name: serverless-workflow-mtav6.2.2-manifests
path: manifests

- name: Download serverless workflows mta image
uses: actions/download-artifact@v3
with:
name: serverless-workflow-mtav6.2.2-${{ github.sha }}.tar

- name: Load mta workflow image to Kind
run: |
kind load image-archive serverless-workflow-mtav6.2.2-${{ github.sha }}.tar


- name: Deploy MTA serverless workflow
run: |
###### workaround till https://issues.redhat.com/browse/FLPATH-892 is solved
# yq --inplace '.spec.podTemplate.container |= ( . + {"imagePullPolicy": "IfNotPresent"} )' manifests/01-sonataflow_mta-analysis.yaml
###### end workfaround

# Set the endpoint to the tackle-ui service
yq --inplace '.spec.podTemplate.container.env |= ( . + [{"name": "QUARKUS_REST_CLIENT_MTA_JSON_URL", "value": "http://tackle-ui.my-konveyor-operator.svc:8080/hub"}, {"name": "BACKSTAGE_NOTIFICATIONS_URL", "value": "http://janus-idp-workflows-backstage.default.svc.cluster.local:7007/api/notifications/"}] )' manifests/01-sonataflow_mta-analysis.yaml

# Disable persistence for e2e tests
yq e '.spec.persistence = {}' -i manifests/01-sonataflow_mta-analysis.yaml
sed -i '/quarkus\.flyway\.migrate-at-start=true/d' manifests/03-configmap_mta-analysis-props.yaml

echo "manifests/03-configmap_mta-analysis-props.yaml"
cat manifests/03-configmap_mta-analysis-props.yaml
echo "---"

echo "manifests/01-sonataflow_mta-analysis.yaml"
cat manifests/01-sonataflow_mta-analysis.yaml
echo "---"

# deploy the manifests created by the ${{ steps.build-image.outputs.image }} image
kubectl apply -f manifests/
sleep 5
kubectl get deployment mta-analysis -o jsonpath={.spec.template.spec.containers[]}
# give the pod time to start
sleep 15
kubectl get pods -o wide
kubectl wait --for=condition=Ready=true pods -l "app=mta-analysis" --timeout=10m

- uses: actions/checkout@v3
- name: Run e2e script
run: |
e2e/mtav6.2.2.sh

- name: Export kind Logs
if: always()
run: kind export logs ./kind_logs

- name: Upload Kind Logs
uses: actions/upload-artifact@v3
# Always run this, even if one of th previous steps failed.
if: always()
with:
name: kind-logs
path: ./kind_logs/

19 changes: 19 additions & 0 deletions .github/workflows/mtav6.2.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: MTA v6.2.2 workflow container image and manifest push

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- 'mtav6.2.2/**'
- 'pipeline/**'
- .github/workflows/mtav6.2.2.yml
- .github/workflows/main.yml

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
with:
workflow_id: mtav6.2.2
secrets: inherit

148 changes: 148 additions & 0 deletions .github/workflows/mtav7.0.2-e2e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
name: MTA v7.0.2 Workflow end to end tests

on:
workflow_dispatch:
pull_request:
branches:
- main
paths:
- 'mtav7.0.2/**'
- 'pipeline/**'
- 'e2e/mtav7.0.2.sh'
- '!mtav7.0.2/*.svg'
- .github/workflows/mtav7.0.2-e2e.yaml
- .github/workflows/main.yml

jobs:
build:
uses: ./.github/workflows/main.yml
secrets: inherit
with:
workflow_id: mtav7.0.2
it_mode: true
run-e2e:
runs-on: ubuntu-latest
needs: build
steps:
- name: Create k8s Kind Cluster
uses: helm/[email protected]
with:
cluster_name: kind
- name: Install Konveyor 0.3 (MTA upstream equivalent to 7.0)
run: |
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/master/deploy/upstream/quickstart/crds.yaml
# give the apiserver time
sleep 5s
kubectl apply -f https://raw.githubusercontent.com/operator-framework/operator-lifecycle-manager/master/deploy/upstream/quickstart/olm.yaml

# install konveyor operator
# version 0.2 is MTA 6.2 and 0.3 is 7.x
kubectl create -f https://operatorhub.io/install/konveyor-0.3/konveyor-operator.yaml
# give the apiserver time
echo "sleeping 120 seconds to give time for the operator to pull images and start"
sleep 120s
kubectl get csv -A
# TODO its a bit smelly that the csv name is coded here.
kubectl wait --for=jsonpath='{.status.phase}=Succeeded' -n my-konveyor-operator csv/konveyor-operator.v0.3.2
kubectl get pods -A
kubectl wait --for=condition=Ready=true pods -l "name=tackle-operator" -n my-konveyor-operator --timeout=240s
kubectl get crds
kubectl create -f - << EOF
kind: Tackle
apiVersion: tackle.konveyor.io/v1alpha1
metadata:
name: tackle
namespace: my-konveyor-operator
spec:
feature_auth_required: false
hub_database_volume_size: 1Gi
hub_bucket_volume_size: 1Gi
EOF

kubectl get pods -n my-konveyor-operator
sleep 60s
kubectl get tackle -n my-konveyor-operator -o yaml
echo "wait for tackle ui to be ready"
kubectl get pods -n my-konveyor-operator
sleep 30s
kubectl wait --for=condition=Ready=true pods -l "app.kubernetes.io/name=tackle-ui" -n my-konveyor-operator --timeout=240s
# now MTA workflow can execute agains tackle-ui.my-konveyor-operator.svc:8080

- name: Deploy Janus-idp-workflow-helm (janus + sonataflow-opertor)
run: |
helm repo add janus-idp-workflows https://rgolangh.github.io/janus-idp-workflows-helm/
helm install janus-idp-workflows janus-idp-workflows/janus-idp-workflows \
--set backstage.upstream.backstage.image.tag=1.1 \
-f https://raw.githubusercontent.com/rgolangh/janus-idp-workflows-helm/main/charts/kubernetes/orchestrator/values-k8s.yaml

echo "sleep bit long till the PV for data index and kaniko cache is ready. its a bit slow. TODO fixit"
kubectl get pv
sleep 3m
kubectl get sfp -A
kubectl wait --for=condition=Ready=true pods -l "app.kubernetes.io/name=backstage" --timeout=240s
kubectl get pods -o wide
kubectl wait --for=condition=Ready=true pods -l "app=sonataflow-platform" --timeout=240s

- name: Download sonataflow artifacts generated manifests
uses: actions/download-artifact@v3
with:
name: serverless-workflow-mtav7.0.2-manifests
path: manifests

- name: Download serverless workflows mta image
uses: actions/download-artifact@v3
with:
name: serverless-workflow-mtav7.0.2-${{ github.sha }}.tar

- name: Load mta workflow image to Kind
run: |
kind load image-archive serverless-workflow-mtav7.0.2-${{ github.sha }}.tar


- name: Deploy MTA serverless workflow
run: |
###### workaround till https://issues.redhat.com/browse/FLPATH-892 is solved
# yq --inplace '.spec.podTemplate.container |= ( . + {"imagePullPolicy": "IfNotPresent"} )' manifests/01-sonataflow_mta-analysis.yaml
###### end workfaround

# Set the endpoint to the tackle-ui service
yq --inplace '.spec.podTemplate.container.env |= ( . + [{"name": "QUARKUS_REST_CLIENT_MTA_JSON_URL", "value": "http://tackle-ui.my-konveyor-operator.svc:8080/hub"}, {"name": "BACKSTAGE_NOTIFICATIONS_URL", "value": "http://janus-idp-workflows-backstage.default.svc.cluster.local:7007/api/notifications/"}] )' manifests/01-sonataflow_mta-analysis.yaml

# Disable persistence for e2e tests
yq e '.spec.persistence = {}' -i manifests/01-sonataflow_mta-analysis.yaml
sed -i '/quarkus\.flyway\.migrate-at-start=true/d' manifests/03-configmap_mta-analysis-props.yaml

echo "manifests/03-configmap_mta-analysis-props.yaml"
cat manifests/03-configmap_mta-analysis-props.yaml
echo "---"

echo "manifests/01-sonataflow_mta-analysis.yaml"
cat manifests/01-sonataflow_mta-analysis.yaml
echo "---"

# deploy the manifests created by the ${{ steps.build-image.outputs.image }} image
kubectl apply -f manifests/
sleep 5
kubectl get deployment mta-analysis -o jsonpath={.spec.template.spec.containers[]}
# give the pod time to start
sleep 15
kubectl get pods -o wide
kubectl wait --for=condition=Ready=true pods -l "app=mta-analysis" --timeout=10m

- uses: actions/checkout@v3
- name: Run e2e script
run: |
e2e/mtav7.0.2.sh

- name: Export kind Logs
if: always()
run: kind export logs ./kind_logs

- name: Upload Kind Logs
uses: actions/upload-artifact@v3
# Always run this, even if one of th previous steps failed.
if: always()
with:
name: kind-logs
path: ./kind_logs/

19 changes: 19 additions & 0 deletions .github/workflows/mtav7.0.2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: MTA v7.0.2 workflow container image and manifest push

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths:
- 'mtav7.0.2/**'
- 'pipeline/**'
- .github/workflows/mtav7.0.2.yml
- .github/workflows/main.yml

jobs:
call-main-workflow:
uses: ./.github/workflows/main.yml
with:
workflow_id: mtav7.0.2
secrets: inherit

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,7 @@ nb-configuration.xml
# Plugin directory
/.quarkus/cli/plugins/

kn
kn

temp
*.tar
Loading
Loading