-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcert-manager-istio-csr-simple.cue
45 lines (41 loc) · 1.07 KB
/
cert-manager-istio-csr-simple.cue
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
bundle: {
apiVersion: "v1alpha1"
name: "istio-csr"
instances: {
"cert-manager": {
module: {
url: "oci://ghcr.io/nalum/timoni/modules/cert-manager"
version: "1.14.5-0"
}
namespace: "cert-manager"
values: {
highAvailability: enabled: true
controller: {
config: logging: format: "json"
podDisruptionBudget: minAvailable: 2
monitoring: {
enabled: true
}
image: {
tag: "v1.14.0"
digest: "sha256:2547fde4e736101abf33f8c2503f12aa3a0b42614d3d64cfecf2835c0ee81c10"
}
}
webhook: {
podDisruptionBudget: minAvailable: 3
}
}
}
"cert-manager-istio-csr": {
module: {
//url: "oci://ghcr.io/paulwilljones/modules/istio-csr"
//version: "6.5.3"
url: "file://istio-csr/"
}
namespace: "cert-manager"
values: {
createSelfSignedCA: true
}
}
}
}