-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy path.goreleaser.yml
69 lines (63 loc) · 1.58 KB
/
.goreleaser.yml
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
before:
hooks:
- go mod download
builds:
- id: controller
binary: manager
goos:
- linux
goarch:
- amd64
- arm64
- id: injector
binary: injector
main: ./cli/injector
goos:
- linux
goarch:
- amd64
- arm64
- id: handler
binary: handler
main: ./cli/handler
goos:
- linux
goarch:
- amd64
- arm64
- id: chaosli
binary: chaosli
main: ./cli/chaosli
goos:
- linux
- darwin
ldflags:
- -X github.com/DataDog/chaos-controller/cli/chaosli/cmd.Version={{ .Tag }}
archives:
- id: controller
builds:
- controller
- injector
- handler
files:
- LICENSE
- LICENSE-3rdparty.csv
- NOTICE
- README.md
- docs/*
- id: chaosli
builds:
- chaosli
format: binary
release:
extra_files:
- glob: ./chart/install.yaml
header: |
## Quick Installation
> :mega: _**Datadog engineers:** please reach out to Chaos Engineering before deploying to a new cluster! :pray: :bow:_
> :warning: _[cert-manager](https://cert-manager.io/docs/installation/kubernetes/) must be installed for the admission controller to get a self-signed certificate._
If you do not plan to alter source code, you can install **Chaos Controller** to your existing Kubernetes environments by running:
> :mega: _**Datadog engineers:** please reach out to Chaos Engineering before deploying to a new cluster! :pray: :bow:_
```
kubectl apply -f https://github.com/DataDog/chaos-controller/releases/download/{{ .Tag }}/install.yaml
```