[TT-11578] Use bitnami charts for redis and mongo #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: Lint and Smoke 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: | |
lint-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
with: | |
version: v3.3.0 | |
- name: Run chart-testing (lint) | |
run: ct lint --config ct.yaml --all | |
smoke-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
k8s_version: ["v1.26.13", "v1.27.10","v1.28.6","v1.29.1"] | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Create Kind Cluster | |
uses: helm/[email protected] | |
with: | |
node_image: "kindest/node:${{ matrix.k8s_version }}" | |
- name: Install helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.11.2 | |
- name: Deploy Tyk OSS and Dependencies | |
run: | | |
kubectl create namespace tyk-oss | |
# Do not change the name | |
helm install redis simple-redis --repo 'https://helm.tyk.io/public/helm/charts/' -n tyk-oss --timeout ${{ env.TIMEOUT }} | |
helm dependency update ./tyk-oss | |
helm install tyk-oss ./tyk-oss -n tyk-oss --timeout ${{ env.TIMEOUT }} | |
- name: Upgrade Tyk OSS | |
run: | | |
helm upgrade -n tyk-oss tyk-oss ./tyk-oss --set tyk-gateway.gateway.kind=DaemonSet | |
- name: Uninstall Tyk OSS | |
run: | | |
helm uninstall tyk-oss -n tyk-oss --timeout ${{ env.TIMEOUT }} | |
kubectl delete namespace tyk-oss | |
- name: Deploy Tyk Data Plane | |
run: | | |
kubectl create namespace ${{ env. TYK_DATAPLANE_NS }} | |
# Do not change the name | |
helm install redis simple-redis --wait --repo 'https://helm.tyk.io/public/helm/charts/' -n ${{ env. TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} | |
helm dependency update ./tyk-data-plane | |
helm install --namespace ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane ./tyk-data-plane --wait \ | |
--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: Upgrade Tyk Data Plane | |
run: | | |
helm upgrade -n ${{ env. TYK_DATAPLANE_NS }} tyk-data-plane ./tyk-data-plane --set tyk-gateway.gateway.kind=DaemonSet | |
- name: Uninstall Tyk Data Plane | |
run: | | |
helm uninstall tyk-data-plane -n ${{ env. TYK_DATAPLANE_NS }} --timeout ${{ env.TIMEOUT }} | |
kubectl delete namespace ${{ env. TYK_DATAPLANE_NS }} |