forked from podtato-head/podtato-head
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmicroservices-delivery-tests.yaml
More file actions
120 lines (109 loc) · 3.37 KB
/
microservices-delivery-tests.yaml
File metadata and controls
120 lines (109 loc) · 3.37 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: podtato-head-microservices-delivery-tests
on:
- push
- pull_request
permissions:
packages: write
deployments: write
env:
CONTAINER_REGISTRY: ghcr.io
GITHUB_TOKEN: ${{ github.token }}
GITHUB_USER: ${{ github.repository_owner }}
IMAGE_VERSION: test-deliveries
defaults:
run:
shell: bash
jobs:
build_and_push_images:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Push images
run: make push-microservices-images
test_kubectl_delivery:
name: Deliver with kubectl
needs: [build_and_push_images]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create kind cluster
uses: helm/[email protected]
- name: Test delivery with kubectl
run: ./delivery/kubectl/test.sh "${{ github.repository_owner }}" "${{ github.token }}"
test_helm_delivery:
name: Deliver with Helm
needs: [build_and_push_images]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create kind cluster
uses: helm/[email protected]
- name: Test delivery with helm
run: ./delivery/chart/test.sh "${{ github.repository_owner }}" "${{ github.token }}"
test_kustomize_delivery:
name: Deliver with kustomize
needs: [build_and_push_images]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create kind cluster
uses: helm/[email protected]
- name: Test delivery with kustomize
run: ./delivery/kustomize/test.sh "${{ github.repository_owner }}" "${{ github.token }}"
# test_ketch_delivery:
# name: Deliver with ketch
# needs: [build_and_push_images]
# runs-on: ubuntu-latest
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - name: Login to GitHub Container Registry
# uses: docker/login-action@v2
# with:
# registry: ${{ env.CONTAINER_REGISTRY }}
# username: ${{ github.repository_owner }}
# password: ${{ github.token }}
# - name: Create kind cluster
# uses: helm/[email protected]
# - name: Test delivery with ketch
# run: ./delivery/ketch/test.sh "${{ github.repository_owner }}" "${{ github.token }}"
test_flux_delivery:
name: Deliver with flux
needs: [build_and_push_images]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create kind cluster
uses: helm/[email protected]
- name: Test delivery with flux
run: ./delivery/flux/test.sh "${{ github.repository_owner }}" "${{ github.token }}"
test_operator_delivery:
name: Deliver with operator
needs: [build_and_push_images]
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create kind cluster
uses: helm/[email protected]
- name: Test delivery with operator
run: ./delivery/operator/test.sh "${{ github.repository_owner }}" "${{ github.token }}"