File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
appVersion : " v0.0.1"
3
3
description : Cert-Manager webhook for Scaleway
4
4
name : scaleway-webhook
5
- version : 0.0.1
5
+ version : 0.0.2
6
6
maintainers :
7
7
- name : suda
8
8
Original file line number Diff line number Diff line change 1
1
# scaleway-webhook
2
2
3
- ![ Version: 0.0.1 ] ( https://img.shields.io/badge/Version-0.0.1 -informational?style=flat-square ) ![ AppVersion: v0.0.1] ( https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square )
3
+ ![ Version: 0.0.2 ] ( https://img.shields.io/badge/Version-0.0.2 -informational?style=flat-square ) ![ AppVersion: v0.0.1] ( https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square )
4
4
5
5
Cert-Manager webhook for Scaleway
6
6
@@ -28,6 +28,7 @@ Cert-Manager webhook for Scaleway
28
28
| pki.servingCertificateDuration | string | ` "8760h" ` | |
29
29
| resources | object | ` {} ` | |
30
30
| secret.accessKey | string | ` "" ` | |
31
+ | secret.existingSecretName | string | ` "" ` | |
31
32
| secret.name | string | ` "scaleway-webhook-secret" ` | |
32
33
| secret.secretKey | string | ` "" ` | |
33
34
| service.port | int | ` 443 ` | |
Original file line number Diff line number Diff line change 39
39
- secretRef :
40
40
name : {{ .Values.secret.name }}
41
41
{{ end }}
42
+ {{ if .Values.secret.existingSecretName }}
43
+ envFrom :
44
+ - secretRef :
45
+ name : {{ .Values.secret.existingSecretName }}
46
+ {{ end }}
42
47
ports :
43
48
- name : https
44
49
containerPort : 443
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ secret:
20
20
accessKey : " "
21
21
secretKey : " "
22
22
name : scaleway-webhook-secret
23
+ existingSecretName : " "
23
24
24
25
service :
25
26
type : ClusterIP
You can’t perform that action at this time.
0 commit comments