-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move integration tests to different workflow
- Loading branch information
1 parent
822c0a5
commit 91f1274
Showing
2 changed files
with
150 additions
and
133 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
name: Run Integration Tests | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
TIMEOUT: 15m | ||
TYK_OSS_NS: tyk-oss | ||
TYK_DATAPLANE_NS: tyk-dataplane | ||
TYK_STACK_NS: tyk-stack | ||
|
||
jobs: | ||
integration-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v4 | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
node_image: "kindest/node:v1.29.1" | ||
|
||
- name: Deploy OSS and Dependencies | ||
id: deploy-oss | ||
run: | | ||
kubectl create namespace ${{ env.TYK_OSS_NS }} | ||
# Do not change the name | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_OSS_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
helm dependency update ./tyk-oss | ||
helm install --namespace ${{ env.TYK_OSS_NS }} tyk-oss ./tyk-oss \ | ||
--set "global.redis.addrs={redis-master.${{ env.TYK_OSS_NS }}.svc:6379}" \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--timeout=${{ env.TIMEOUT }} | ||
- name: Run integration tests for Tyk OSS | ||
id: test-oss | ||
run: helm test -n ${{ env.TYK_OSS_NS }} tyk-oss | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-oss.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_OSS_NS }} gateway-tyk-oss-tyk-gateway | ||
elif [ ${{ steps.test-oss.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_OSS_NS }} tyk-oss-test-tyk-oss | ||
fi | ||
- name: Uninstall Tyk OSS Dependencies | ||
run: | | ||
helm uninstall redis -n ${{ env.TYK_OSS_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env.TYK_OSS_NS }} | ||
- name: Deploy Tyk Stack and dependencies | ||
id: deploy-stack | ||
run: | | ||
kubectl create namespace ${{ env.TYK_STACK_NS }} | ||
# Do not change the name | ||
# Install redis | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
# Install mongo | ||
helm install mongo mongodb --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} --version 15.1.2 | ||
MONGODB_ROOT_PASSWORD=$(kubectl get secret -n ${{ env.TYK_STACK_NS }} mongo-mongodb -o jsonpath="{.data.mongodb-root-password}" | base64 -d) | ||
helm dependency update ./tyk-stack | ||
helm install --namespace ${{ env.TYK_STACK_NS }} tyk-stack ./tyk-stack \ | ||
--set "global.mongo.mongoURL=mongodb://root:$MONGODB_ROOT_PASSWORD@mongo-mongodb.${{ env.TYK_STACK_NS }}.svc:27017/tyk_analytics?authSource=admin" \ | ||
--set "global.redis.addrs={redis-master.${{ env.TYK_STACK_NS }}.svc:6379"} \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--set "global.license.dashboard=${{ secrets.DASH_LICENSE }}" \ | ||
--set "global.storageType=mongo" \ | ||
--timeout=${{ env.TIMEOUT }} | ||
- name: Run integration tests for Tyk Stack | ||
id: test-stack | ||
run: helm test -n ${{ env.TYK_STACK_NS }} tyk-stack | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-stack.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} deployment/dashboard-tyk-stack-tyk-dashboard | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} job.batch/bootstrap-post-install-tyk-stack-tyk-bootstrap | ||
elif [ ${{ steps.test-stack.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} tyk-stack-test-tyk-stack | ||
fi | ||
- name: Uninstall Tyk Stack Dependencies | ||
run: | | ||
helm uninstall redis -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
helm uninstall mongo -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
helm uninstall tyk-stack -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env.TYK_STACK_NS }} | ||
- name: Deploy Tyk Data Plane and Dependencies | ||
id: deploy-data-plane | ||
run: | | ||
kubectl create namespace ${{ env. TYK_DATAPLANE_NS }} | ||
# Do not change the name | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
helm dependency update ./tyk-data-plane | ||
helm install --namespace ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane ./tyk-data-plane --wait \ | ||
--set "global.redis.addrs={redis-master.${{ env. TYK_DATAPLANE_NS }}.svc:6379"} \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--set global.remoteControlPlane.orgId=${{ secrets.HYBRID_RPC_KEY }} \ | ||
--set global.remoteControlPlane.userApiKey=${{ secrets.HYBRID_API_KEY }} \ | ||
--set global.remoteControlPlane.connectionString=${{ secrets.HYBRID_MDCB_HOST }} | ||
- name: Run integration tests for Tyk Data Plane | ||
id: test-data-plane | ||
run: helm test -n ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-data-plane.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env. TYK_DATAPLANE_NS }} deployment/gateway-tyk-data-plane-tyk-gateway | ||
elif [ ${{ steps.test-data-plane.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane-test-tyk-data-plane | ||
fi | ||
- name: Uninstall Tyk Data Plane Dependencies | ||
run: | | ||
helm uninstall tyk-data-plane -n ${{ env. TYK_DATAPLANE_NS }} | ||
helm uninstall redis -n ${{ env. TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env. TYK_DATAPLANE_NS }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,136 +101,4 @@ jobs: | |
run: | | ||
helm uninstall tyk-data-plane -n ${{ env. TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env. TYK_DATAPLANE_NS }} | ||
integration-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up Helm | ||
uses: azure/setup-helm@v4 | ||
|
||
- name: Create kind cluster | ||
uses: helm/[email protected] | ||
with: | ||
node_image: "kindest/node:v1.29.1" | ||
|
||
- name: Deploy OSS and Dependencies | ||
id: deploy-oss | ||
run: | | ||
kubectl create namespace ${{ env.TYK_OSS_NS }} | ||
# Do not change the name | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_OSS_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
helm dependency update ./tyk-oss | ||
helm install --namespace ${{ env.TYK_OSS_NS }} tyk-oss ./tyk-oss \ | ||
--set "global.redis.addrs={redis-master.${{ env.TYK_OSS_NS }}.svc:6379}" \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--timeout=${{ env.TIMEOUT }} | ||
- name: Run integration tests for Tyk OSS | ||
id: test-oss | ||
run: helm test -n ${{ env.TYK_OSS_NS }} tyk-oss | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-oss.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_OSS_NS }} gateway-tyk-oss-tyk-gateway | ||
elif [ ${{ steps.test-oss.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_OSS_NS }} tyk-oss-test-tyk-oss | ||
fi | ||
- name: Uninstall Tyk OSS Dependencies | ||
run: | | ||
helm uninstall redis -n ${{ env.TYK_OSS_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env.TYK_OSS_NS }} | ||
- name: Deploy Tyk Stack and dependencies | ||
id: deploy-stack | ||
run: | | ||
kubectl create namespace ${{ env.TYK_STACK_NS }} | ||
# Do not change the name | ||
# Install redis | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
# Install mongo | ||
helm install mongo mongodb --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} --version 15.1.2 | ||
MONGODB_ROOT_PASSWORD=$(kubectl get secret -n ${{ env.TYK_STACK_NS }} mongo-mongodb -o jsonpath="{.data.mongodb-root-password}" | base64 -d) | ||
helm dependency update ./tyk-stack | ||
helm install --namespace ${{ env.TYK_STACK_NS }} tyk-stack ./tyk-stack \ | ||
--set "global.mongo.mongoURL=mongodb://root:$MONGODB_ROOT_PASSWORD@mongo-mongodb.${{ env.TYK_STACK_NS }}.svc:27017/tyk_analytics?authSource=admin" \ | ||
--set "global.redis.addrs={redis-master.${{ env.TYK_STACK_NS }}.svc:6379"} \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--set "global.license.dashboard=${{ secrets.DASH_LICENSE }}" \ | ||
--set "global.storageType=mongo" \ | ||
--timeout=${{ env.TIMEOUT }} | ||
- name: Run integration tests for Tyk Stack | ||
id: test-stack | ||
run: helm test -n ${{ env.TYK_STACK_NS }} tyk-stack | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-stack.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} deployment/dashboard-tyk-stack-tyk-dashboard | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} job.batch/bootstrap-post-install-tyk-stack-tyk-bootstrap | ||
elif [ ${{ steps.test-stack.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env.TYK_STACK_NS }} tyk-stack-test-tyk-stack | ||
fi | ||
- name: Uninstall Tyk Stack Dependencies | ||
run: | | ||
helm uninstall redis -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
helm uninstall mongo -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
helm uninstall tyk-stack -n ${{ env.TYK_STACK_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env.TYK_STACK_NS }} | ||
- name: Deploy Tyk Data Plane and Dependencies | ||
id: deploy-data-plane | ||
run: | | ||
kubectl create namespace ${{ env. TYK_DATAPLANE_NS }} | ||
# Do not change the name | ||
helm install redis redis --wait --repo 'https://charts.bitnami.com/bitnami' -n ${{ env.TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} --version 19.0.2 | ||
helm dependency update ./tyk-data-plane | ||
helm install --namespace ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane ./tyk-data-plane --wait \ | ||
--set "global.redis.addrs={redis-master.${{ env. TYK_DATAPLANE_NS }}.svc:6379"} \ | ||
--set "global.redis.passSecret.name=redis" \ | ||
--set "global.redis.passSecret.keyName=redis-password" \ | ||
--set global.remoteControlPlane.orgId=${{ secrets.HYBRID_RPC_KEY }} \ | ||
--set global.remoteControlPlane.userApiKey=${{ secrets.HYBRID_API_KEY }} \ | ||
--set global.remoteControlPlane.connectionString=${{ secrets.HYBRID_MDCB_HOST }} | ||
- name: Run integration tests for Tyk Data Plane | ||
id: test-data-plane | ||
run: helm test -n ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane | ||
|
||
- if: failure() | ||
name: Check logs in case of failure | ||
run: | | ||
if [ ${{ steps.deploy-data-plane.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env. TYK_DATAPLANE_NS }} deployment/gateway-tyk-data-plane-tyk-gateway | ||
elif [ ${{ steps.test-data-plane.conclusion }} == 'failure' ]; then | ||
kubectl logs -n ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane-test-tyk-data-plane | ||
fi | ||
- name: Uninstall Tyk Data Plane Dependencies | ||
run: | | ||
helm uninstall tyk-data-plane -n ${{ env. TYK_DATAPLANE_NS }} | ||
helm uninstall redis -n ${{ env. TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} | ||
kubectl delete namespace ${{ env. TYK_DATAPLANE_NS }} | ||