forked from bank-vaults/vault-secrets-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
garden.yaml
50 lines (47 loc) · 980 Bytes
/
garden.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
kind: Deploy
type: helm
name: vault-operator
spec:
namespace: vault-operator
chart:
name: oci://ghcr.io/bank-vaults/helm-charts/vault-operator
version: "1.20.0"
---
kind: Deploy
type: kubernetes
name: vault
dependencies:
- deploy.vault-operator
spec:
namespace: default
files:
- ./e2e/deploy/vault/rbac.yaml
- ./e2e/deploy/vault/vault.yaml
---
kind: Build
type: container
name: vault-secrets-webhook
exclude:
- .direnv/**/*
- .devenv/**/*
- build/**/*
- e2e/**/*
---
kind: Deploy
type: helm
name: vault-secrets-webhook
dependencies:
- deploy.vault
variables:
repository: ${actions.build.vault-secrets-webhook.outputs.deployment-image-name}
tag: ${actions.build.vault-secrets-webhook.version}
spec:
namespace: vault-secrets-webhook
chart:
path: ./deploy/charts/vault-secrets-webhook/
valueFiles:
- ./e2e/deploy/vault-secrets-webhook/values.yaml
values:
image:
repository: ${var.repository}
tag: ${var.tag}