mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
37338be747
* fix: cleanup-controller version Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix: new binaries version Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com> Co-authored-by: Jim Bugwadia <jim@nirmata.com>
30 lines
767 B
YAML
30 lines
767 B
YAML
builds:
|
|
- id: initContainer
|
|
main: ./cmd/initContainer
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|
|
|
|
- id: kyverno
|
|
main: ./cmd/kyverno
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|
|
|
|
- id: cli
|
|
main: ./cmd/cli
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|
|
|
|
- id: cleanup-controller
|
|
main: ./cmd/cleanup-controller
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|
|
|
|
- id: reports-controller
|
|
main: ./cmd/reports-controller
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|
|
|
|
- id: updaterequest-controller
|
|
main: ./cmd/updaterequest-controller
|
|
ldflags:
|
|
- '{{ if index .Env "LD_FLAGS" }}{{ .Env.LD_FLAGS }}{{ end }}'
|