-
Notifications
You must be signed in to change notification settings - Fork 3
181 lines (173 loc) · 6.08 KB
/
packer.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
name: Packer build
# prevent mutliple concurrent workflow executions to avoid hcloud resources interfering with each other
concurrency: hcloud
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and save Docker image
run: |
docker build -t ghcr.io/enowars/bambictf:latest .
docker save --output /tmp/bambictf.tar ghcr.io/enowars/bambictf:latest
- name: Upload docker image artifact
uses: actions/upload-artifact@v4
with:
name: bambictf
path: /tmp/bambictf.tar
ansible-lint:
runs-on: ubuntu-latest
needs: docker-build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: bambictf
path: /tmp
- name: Load Docker image
run: docker load --input /tmp/bambictf.tar
- name: start docker compose setup
run: docker compose up -d
- name: run ansible-lint
run: docker compose exec -T bambictf sh -c 'cd ansible && ansible-lint'
configgen:
runs-on: ubuntu-latest
needs: docker-build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: bambictf
path: /tmp
- name: Load Docker image
run: docker load --input /tmp/bambictf.tar
- name: start docker compose setup
env:
HCLOUD_TOKEN: ${{ secrets.HCLOUD_TOKEN }}
run: docker compose up -d
- name: prepare ansible config
run: docker compose exec -T bambictf sh -c 'cp ansible/config_bambi.yml.sample ansible/config_bambi.yml'
- name: generate config files
run: docker compose exec -T bambictf sh -c 'cd configgen; poetry install; poetry run configgen --teams 4 --routers 2 --dns ci-${{ github.sha }}.bambi.ovh'
- name: tar config files
run: sudo tar cf /tmp/config.tar config
- name: Upload config artifact
uses: actions/upload-artifact@v4
with:
name: config
path: /tmp/config.tar
packer-build:
strategy:
# fail-fast needs to be disabled, otherwise packer processes may be ungracefully killed and leave stale builder VMs
fail-fast: false
matrix:
image:
[
"bambichecker",
"bambielk",
"bambiengine",
"bambirouter",
"bambivulnbox",
]
runs-on: ubuntu-latest
needs: configgen
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download docker image artifact
uses: actions/download-artifact@v4
with:
name: bambictf
path: /tmp
- name: Load Docker image
run: docker load --input /tmp/bambictf.tar
- name: Download config artifact
uses: actions/download-artifact@v4
with:
name: config
path: /tmp
- name: untar config files
run: tar xf /tmp/config.tar
- name: start docker compose setup
env:
HCLOUD_TOKEN: ${{ secrets.HCLOUD_TOKEN }}
run: docker compose up -d
- name: prepare ansible config
run: docker compose exec -T bambictf sh -c 'cp ansible/config_bambi.yml.sample ansible/config_bambi.yml'
- name: build packer image
run: docker compose exec -T bambictf sh -c 'cd packer; packer build ${{ matrix.image }}.json'
terraform-apply:
runs-on: ubuntu-latest
needs: packer-build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download docker image artifact
uses: actions/download-artifact@v4
with:
name: bambictf
path: /tmp
- name: Load Docker image
run: docker load --input /tmp/bambictf.tar
- name: Download config artifact
uses: actions/download-artifact@v4
with:
name: config
path: /tmp
- name: untar config files
run: tar xf /tmp/config.tar
- name: copy terraform sample config
run: cp terraform/terraform.tfvars.sample terraform/terraform.tfvars
- name: prepare terraform config
run: sed -i s/prod/ci-${{ github.sha }}/ terraform/terraform.tfvars
- name: setup hcloud
run: |
curl -o hcloud-linux-amd64.tar.gz -L https://github.com/hetznercloud/cli/releases/download/v1.34.0/hcloud-linux-amd64.tar.gz
sudo tar xf hcloud-linux-amd64.tar.gz -C /usr/bin hcloud
sudo chmod +x /usr/bin/hcloud
- name: generate admin SSH key
run: ssh-keygen -t ed25519 -N "" -f adminkey
- name: add hcloud ssh key
env:
HCLOUD_TOKEN: ${{ secrets.HCLOUD_TOKEN }}
run: hcloud ssh-key create --name adminkey-${{ github.sha }} --label type=admin --public-key-from-file adminkey.pub
- name: start docker compose setup
env:
HCLOUD_TOKEN: ${{ secrets.HCLOUD_TOKEN }}
HETZNERDNS_TOKEN: ${{ secrets.HETZNERDNS_TOKEN }}
run: docker compose up -d
- name: perform terraform init
run: docker compose exec -T bambictf sh -c 'cd terraform ; terraform init'
- name: perform terraform apply
run: docker compose exec -T bambictf sh -c 'cd terraform ; terraform plan'
publish-docker-image:
runs-on: ubuntu-latest
needs: terraform-apply
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download docker image artifact
uses: actions/download-artifact@v4
with:
name: bambictf
path: /tmp
- name: Load Docker image
run: docker load --input /tmp/bambictf.tar
- name: Log into GitHub Container Registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image to GitHub Container Registry
run: docker image push ghcr.io/enowars/bambictf:latest