-
Notifications
You must be signed in to change notification settings - Fork 3
103 lines (96 loc) · 2.66 KB
/
kind.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
93
94
95
96
97
98
99
100
101
102
103
# This GitHub Workflow will run on every push to the repository
# and will test the Kargo codebase on a Kind Kubernetes cluster.
name: CI - Kargo on Kind
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- "devcontainer/**"
- ".devcontainer/**"
- ".pulumi/**"
- ".talos/**"
- ".kube/**"
- "docs/**"
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "devcontainer/**"
- ".devcontainer/**"
- ".pulumi/**"
- ".talos/**"
- ".kube/**"
- "docs/**"
- "**.md"
schedule:
- cron: "0 2 * * *"
jobs:
ci-kargo-kind:
runs-on: ubuntu-latest
steps:
- id: checkout
name: ✨ Checkout ✨
uses: actions/checkout@v4
with:
fetch-depth: 1
- id: kind-kubernetes
name: 🔨 Kind Kubernetes 🔨
uses: helm/[email protected]
env:
ACTIONS_STEP_DEBUG: true
KUBECONFIG: .kube/config
with:
wait: 30s
cluster_name: kargo
config: hack/kind.yaml
ignore_failed_clean: true
- id: pulumi-install
name: 📦️ Pulumi Install 📦️
uses: pulumi/actions@v5
- id: pulumi-up
name: 🚀 Pulumi Up 🚀
uses: pulumi/actions@v5
env:
ACTIONS_STEP_DEBUG: true
KUBECONFIG: .kube/config
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
PULUMI_CONFIG_PASSPHRASE: foobarbaz
PULUMI_BACKEND_URL: file://./.pulumi
with:
command: up
refresh: true
upsert: true
stack-name: organization/kargo/ci
secrets-provider: passphrase
cloud-url: file://./.pulumi
work-dir: ./
- name: 🕚 Wait for pods 🕛
uses: CodingNagger/[email protected]
env:
ACTIONS_STEP_DEBUG: true
KUBECONFIG: .kube/config
with:
max-retry-attempts: 12
retry-delay: 10
- id: pulumi-destroy
name: 💣 Pulumi Destroy 💣
uses: pulumi/actions@v5
if: always()
env:
ACTIONS_STEP_DEBUG: true
KUBECONFIG: .kube/config
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
PULUMI_CONFIG_PASSPHRASE: foobarbaz
PULUMI_BACKEND_URL: file://./.pulumi
with:
command: destroy
refresh: true
stack-name: organization/kargo/ci
secrets-provider: passphrase
cloud-url: file://./.pulumi
work-dir: ./