Compare commits
6 Commits
attest-pro
...
attest-pro
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f823962909 | ||
|
|
08ab6326f1 | ||
|
|
da3534192a | ||
|
|
63ddd22803 | ||
|
|
2efeb7ed64 | ||
|
|
4f4e2d3608 |
@@ -1,8 +1,8 @@
|
||||
apiVersion: v2
|
||||
description: A Helm chart for attest external data provider
|
||||
name: attest-provider
|
||||
version: 0.0.3
|
||||
version: 0.0.5
|
||||
home: https://github.com/docker/attest-provider
|
||||
sources:
|
||||
- https://github.com/docker/attest-provider.git
|
||||
appVersion: 0.0.3
|
||||
appVersion: 0.0.5
|
||||
|
||||
@@ -4,7 +4,7 @@ metadata:
|
||||
name: attest-provider
|
||||
namespace: {{ .Release.Namespace }}
|
||||
spec:
|
||||
replicas: 1
|
||||
replicas: {{ .Values.replicas }}
|
||||
selector:
|
||||
matchLabels:
|
||||
run: attest-provider
|
||||
@@ -47,6 +47,11 @@ spec:
|
||||
volumeMounts:
|
||||
- name: tuf-temp
|
||||
mountPath: /tuf_temp
|
||||
{{- if .Values.localPolicyDir }}
|
||||
- name: local-policy
|
||||
mountPath: {{ .Values.localPolicyDir }}
|
||||
readOnly: true
|
||||
{{- end }}
|
||||
{{- if .Values.clientCAFile }}
|
||||
- name: gatekeeper-ca-cert
|
||||
mountPath: /tmp/gatekeeper
|
||||
@@ -63,6 +68,11 @@ spec:
|
||||
volumes:
|
||||
- name: tuf-temp
|
||||
emptyDir: {}
|
||||
{{- if .Values.localPolicyDir }}
|
||||
- name: local-policy
|
||||
configMap:
|
||||
name: {{ .Values.localPolicyConfigMap }}
|
||||
{{- end }}
|
||||
{{- if .Values.clientCAFile }}
|
||||
- name: gatekeeper-ca-cert
|
||||
secret:
|
||||
|
||||
@@ -3,6 +3,7 @@ image: "docker/attest-provider:0.0.3@sha256:7a86f674235cae3f7fa0691ae56d385b2b13
|
||||
certDir: /certs
|
||||
clientCAFile: /tmp/gatekeeper/ca.crt
|
||||
port: 8090
|
||||
replicas: 1
|
||||
|
||||
# uncomment these lines to use the dev TUF root
|
||||
# tufRoot: dev
|
||||
|
||||
Reference in New Issue
Block a user