-
Notifications
You must be signed in to change notification settings - Fork 16
92 lines (80 loc) · 2.43 KB
/
test-mutliple-gateways-groups-examples.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Test Helm-Chart examples
on:
push:
branches:
- master
paths:
- APIM/Helmchart/**
pull_request:
branches:
- master
paths:
- APIM/Helmchart/**
env:
# Multiple GW-Groups
exampleValuesFiles1: examples/mutliple-gateways-groups/apim-external-value.yaml
exampleValuesFiles2: examples/mutliple-gateways-groups/apim-internal-value.yaml
# AWS-EKS
exampleValuesFiles3: examples/aws-eks/aws-eks-example-values.yaml
# Azure-AKS
exampleValuesFiles4: examples/azure-aks/azure-aks-example-agic-value.yaml
exampleValuesFiles5: examples/azure-aks/azure-aks-example-noingress-values.yaml
# Google-GKE
exampleValuesFiles6: examples/google-gke/google-gke-example-values.yaml
# Minikube
exampleValuesFiles7: examples/minikube/minikube-example-value.yaml
jobs:
multiple-gw-groups:
name: Mutliple-GW-Groups Examples
defaults:
run:
working-directory: 'APIM/Helmchart'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: apim-external-value
run: helm template test -f ${{ env.exampleValuesFiles1 }} . --debug
- name: apim-internal-value
run: helm template test -f ${{ env.exampleValuesFiles2 }} . --debug
aws-eks:
name: AWS-EKS
defaults:
run:
working-directory: 'APIM/Helmchart'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: aws-eks-example-values
run: helm template test -f ${{ env.exampleValuesFiles3 }} . --debug
azure-aks:
name: Azure-AKS
defaults:
run:
working-directory: 'APIM/Helmchart'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: azure-aks-example-agic-value
run: helm template test -f ${{ env.exampleValuesFiles4 }} . --debug
- name: azure-aks-example-noingress-values
run: helm template test -f ${{ env.exampleValuesFiles5 }} . --debug
google-gke:
name: Google-GKE
defaults:
run:
working-directory: 'APIM/Helmchart'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: google-gke-example-values
run: helm template test -f ${{ env.exampleValuesFiles6 }} . --debug
minikube:
name: Minikube
defaults:
run:
working-directory: 'APIM/Helmchart'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: minikube-example-value
run: helm template test -f ${{ env.exampleValuesFiles7 }} . --debug