mirror of
https://github.com/cert-manager/webhook-example.git
synced 2026-03-16 18:02:51 +01:00
fix: fix values, add testdata, remove empty notes
This commit is contained in:
parent
537ffcc184
commit
a229c407af
4 changed files with 14 additions and 1 deletions
|
|
@ -5,7 +5,7 @@ certManager:
|
||||||
serviceAccountName: cert-manager
|
serviceAccountName: cert-manager
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/pr0ton11/cert-manager-desec-webhook:latest
|
repository: ghcr.io/pr0ton11/cert-manager-desec-webhook
|
||||||
tag: latest
|
tag: latest
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
|
|
||||||
6
testdata/desec/config.json
vendored
Normal file
6
testdata/desec/config.json
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"apiKeySecretRef": {
|
||||||
|
"name": "desec-token",
|
||||||
|
"key": "token"
|
||||||
|
}
|
||||||
|
}
|
||||||
7
testdata/desec/secret.yaml
vendored
Normal file
7
testdata/desec/secret.yaml
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: desec-token
|
||||||
|
data:
|
||||||
|
token: changeme
|
||||||
|
type: Opaque
|
||||||
Loading…
Reference in a new issue