forked from sigstore/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
220 lines (215 loc) · 5.03 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
namespace:
create: false
name: rekor-system
imagePullSecrets: []
initContainerImage:
curl:
registry: docker.io
repository: curlimages/curl
# -- 8.5.0
version: "sha256:4bfa3e2c0164fb103fb9bfd4dc956facce32b6c5d47cc09fcec883ce9535d5ac"
imagePullPolicy: IfNotPresent
redis:
enabled: true
replicaCount: 1
hostname: ""
port: 6379
args:
- --bind
- 0.0.0.0
- --appendonly
- "yes"
name: redis
image:
registry: docker.io
repository: redis
pullPolicy: IfNotPresent
# -- 6.2.14-alpine3.19
version: "sha256:c5a607fb6e1bb15d32bbcf14db22787d19e428d59e31a5da67511b49bb0f1ccc"
resources: {}
readinessProbe:
initialDelaySeconds: 5
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
exec:
command:
- /bin/sh
- -i
- -c
- test "$(redis-cli -h 127.0.0.1 ping)" = "PONG"
service:
type: ClusterIP
ports:
- name: 6379-tcp
port: 6379
protocol: TCP
targetPort: 6379
serviceAccount:
create: true
name: ""
annotations: {}
server:
enabled: true
replicaCount: 1
name: server
port: 3000
image:
registry: gcr.io
repository: projectsigstore/rekor-server
pullPolicy: IfNotPresent
# crane digest gcr.io/projectsigstore/rekor-server:v1.3.6
version: sha256:1237f29e2105d7f5451bbe15a3aca8677ddd1bb80620ca2fd06f74262437cf51
logging:
production: false
ingress:
enabled: true
className: "nginx"
hosts:
- path: /
host: root
annotations: {}
tls: []
ingresses:
- enabled: false
name: "gce-ingress"
className: "gce"
hosts:
- path: /
host: root
annotations: {}
tls: []
staticGlobalIP: lb-ext-ip
frontendConfigSpec: # https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-configuration#configuring_ingress_features_through_frontendconfig_parameters
sslPolicy: rekor-ssl-policy
redirectToHttps:
enabled: true
backendConfigSpec: # https://cloud.google.com/kubernetes-engine/docs/how-to/ingress-configuration#configuring_ingress_features_through_backendconfig_parameters
securityPolicy:
name: rekor-security-policy
logging:
enable: true
service:
type: ClusterIP
ports:
- name: 3000-tcp
port: 80
protocol: TCP
targetPort: 3000
- name: 2112-tcp
port: 2112
protocol: TCP
targetPort: 2112
signer: memory
readinessProbe:
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
httpGet:
port: 3000
path: /ping
sharding:
mountPath: /sharding
filename: sharding-config.yaml
contents: ""
livenessProbe:
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
successThreshold: 1
httpGet:
port: 3000
path: /ping
securityContext:
runAsNonRoot: true
runAsUser: 65533
config:
key: treeID
treeID: ""
retrieve_api:
enabled: true
attestation_storage:
enabled: true
bucket: file:///var/run/attestations
persistence:
enabled: true
annotations: {}
storageClass: ""
size: 5Gi
mountPath: /var/lib/mysql
subPath: ""
existingClaim: ""
accessModes:
- ReadWriteOnce
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/path: /metrics
prometheus.io/port: "2112"
resources: {}
extraArgs: []
serviceAccount:
create: true
name: ""
annotations: {}
createtree:
name: createtree
force: false
image:
registry: ghcr.io
repository: sigstore/scaffolding/createtree
pullPolicy: IfNotPresent
# v0.6.17
version: sha256:eb1a94738f34964c7456d18d30b8a45a654af89bb5371f69b2403df373be0826
ttlSecondsAfterFinished: 3600
serviceAccount:
create: true
name: ""
annotations: {}
securityContext:
runAsNonRoot: true
runAsUser: 65533
resources: {}
annotations: {}
# Configure backfillredis to repair indices that were not inserted into Redis.
backfillredis:
name: backfillredis
enabled: false
image:
registry: ghcr.io
repository: sigstore/rekor/backfill-redis
pullPolicy: IfNotPresent
# v1.3.5
version: sha256:a13cd8b2a554d6116888fd1f383cf6e91fc1716df5eda392b82e6bfc66995ec3
ttlSecondsAfterFinished: 3600
securityContext:
runAsNonRoot: true
runAsUser: 65533
rekorAddress: rekor.rekor-system.svc
startIndex: -1
endIndex: -1
resources: {}
# Configure Trillian dependency
trillian:
enabled: true
namespace:
name: trillian-system
create: true
forceNamespace: trillian-system
fullnameOverride: trillian
adminServer: ""
logServer:
name: trillian-logserver
fullnameOverride: trillian-logserver
portHTTP: 8090
portRPC: 8091
logSigner:
name: trillian-logsigner
fullnameOverride: trillian-logsigner
mysql:
fullnameOverride: trillian-mysql
# Force namespace of namespaced resources
forceNamespace: ""