forked from sigstore/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
107 lines (100 loc) · 2.41 KB
/
values.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
cosign:
# add the values in base64 encoded
cosignPub: ""
webhookName: "policy.sigstore.dev"
installCRDs: true
imagePullSecrets: []
policywebhook:
configData: {}
replicaCount: 1
image:
repository: ghcr.io/sigstore/policy-controller/policy-webhook
# crane digest ghcr.io/sigstore/policy-controller/policy-webhook:v0.4.2
version: sha256:7ed0b012751d9941cb7b969ab2c37f5633d4dba2b2b445a6e6e23a91de554d6b
pullPolicy: IfNotPresent
env: {}
extraArgs: {}
resources:
limits:
cpu: 100m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
serviceAccount:
annotations: {}
securityContext:
enabled: false
runAsUser: 65532
podSecurityContext:
enabled: true
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsNonRoot: true
capabilities:
drop:
- ALL
service:
annotations: {}
type: ClusterIP
port: 443
webhookNames:
defaulting: "defaulting.clusterimagepolicy.sigstore.dev"
validating: "validating.clusterimagepolicy.sigstore.dev"
webhook:
replicaCount: 1
name: webhook
image:
repository: ghcr.io/sigstore/policy-controller/policy-controller
# crane digest ghcr.io/sigstore/policy-controller/policy-controller:v0.4.2
version: sha256:435373b2bde7ed3fe133ff0d59bb4a23a0e15762320c9547fe6d1d042ab50c6c
pullPolicy: IfNotPresent
env: {}
extraArgs: {}
resources:
limits:
cpu: 100m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
securityContext:
enabled: false
runAsUser: 65532
podSecurityContext:
enabled: true
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsUser: 1000
capabilities:
drop:
- ALL
serviceAccount:
annotations: {}
service:
annotations: {}
type: ClusterIP
port: 443
# For nodeport, specify the following:
# type: NodePort
# nodePort: <port-number>
volumeMounts: []
volumes: []
namespaceSelector:
matchExpressions:
- key: policy.sigstore.dev/include
operator: In
values: ["true"]
## common node selector for all the pods
commonNodeSelector: {}
# key1: value1
# key2: value2
## common tolerations for all the pods
commonTolerations: []
# - key: "key"
# operator: "Equal"
# value: "value"
# effect: "NoSchedule"
## serviceMonitor makes policy controller metrics discoverable to prometheus
serviceMonitor:
enabled: false