-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (64 loc) · 2.33 KB
/
smoke-test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Smoke test automation-flavors
run-name: >-
${{
format('Smoke testing automation-flavor version {0} on infra cluster {1}',
inputs.automation-flavors-version,
inputs.cluster
)
}}
on:
workflow_dispatch:
inputs:
automation-flavors-version:
description: automation-flavors version, e.g. 0.10.2
required: true
cluster:
description: Infra cluster to run smoke test on (in acs-team-temp-dev project)
required: true
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Show inputs
run: |
echo "automation-flavors version: ${{ inputs.automation-flavors-version }}"
echo "Cluster: ${{ inputs.cluster }}"
smoke-test:
runs-on: ubuntu-latest
env:
KUBECONFIG: /home/runner/artifacts/kubeconfig
INFRA_TOKEN_PROD: ${{ secrets.INFRA_TOKEN }}
INFRA_TOKEN_DEV: ${{ secrets.INFRA_TOKEN_DEV }}
USE_GKE_GCLOUD_AUTH_PLUGIN: "True"
strategy:
matrix:
name: [demo, aks, aro, eks, gke-default, ibmroks, openshift-4, openshift-4-demo, openshift-4-perf-scale, openshift-multi, osd-on-aws, osd-on-gcp, qa-demo, rosa, rosahcp]
steps:
- name: Authenticate to GCloud
uses: google-github-actions/auth@v2
with:
credentials_json: ${{ secrets.INFRA_CI_AUTOMATION_GCP_SA }}
- name: Set up Cloud SDK
uses: "google-github-actions/setup-gcloud@v2"
with:
install_components: "gke-gcloud-auth-plugin"
- name: Download production infractl
uses: stackrox/actions/infra/install-infractl@v1
- name: Download artifacts for cluster ${{ inputs.cluster }}
env:
INFRA_TOKEN: ${{ env.INFRA_TOKEN_PROD }}
run: |
set -uo pipefail
infractl artifacts "${{ inputs.cluster }}" -d "/home/runner/artifacts" >> "$GITHUB_STEP_SUMMARY"
kubectl -n infra port-forward svc/infra-server-service 8443:8443 &
sleep 10
- name: Create infra cluster for ${{ matrix.name }}
uses: stackrox/actions/infra/create-cluster@tm/create-cluster-endpoint
with:
token: ${{ env.INFRA_TOKEN_DEV }}
flavor: ${{ matrix.name }}
name: sm-${{ matrix.name }}-${{ inputs.automation-flavors-version }}
lifespan: 1h
wait: true
endpoint: localhost:8443
insecure: true