Skip to content

Commit

Permalink
add certificates to docker image and persistent volume to store keys …
Browse files Browse the repository at this point in the history
…on the chart
  • Loading branch information
sbaizet-ledger committed Oct 22, 2024
1 parent af81e18 commit 4638b7d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
15 changes: 10 additions & 5 deletions charts/scroll-proving-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@ Kubernetes: `>=1.22.0-0`
| global.nameOverride | string | `"scroll-proving-sdk"` | |
| image.pullPolicy | string | `"Always"` | |
| image.repository | string | `"scrolltech/sdk-cloud-prover"` | |
| image.tag | string | `"sindri-2791edca"` | |
| persistence.app_name.enabled | bool | `true` | |
| persistence.app_name.mountPath | string | `"/sdk_prover/"` | |
| persistence.app_name.name | string | `"scroll-proving-sdk-config"` | |
| persistence.app_name.type | string | `"configMap"` | |
| image.tag | string | `"sindri-v0.0.1"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/sdk_prover/"` | |
| persistence.config.name | string | `"scroll-proving-sdk-config"` | |
| persistence.config.type | string | `"configMap"` | |
| persistence.keys.accessMode | string | `"ReadWriteOnce"` | |
| persistence.keys.enabled | bool | `true` | |
| persistence.keys.mountPath | string | `"/keys/"` | |
| persistence.keys.size | string | `"10Mi"` | |
| persistence.keys.type | string | `"pvc"` | |
| probes.liveness.<<.custom | bool | `true` | |
| probes.liveness.<<.enabled | bool | `true` | |
| probes.liveness.<<.spec.httpGet.path | string | `"/"` | |
Expand Down
8 changes: 7 additions & 1 deletion charts/scroll-proving-sdk/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ global:
image:
repository: scrolltech/sdk-cloud-prover
pullPolicy: Always
tag: sindri-2791edca
tag: sindri-v0.0.1

command:
- "/bin/sh"
Expand All @@ -27,6 +27,12 @@ persistence:
type: configMap
mountPath: /sdk_prover/
name: scroll-proving-sdk-config # Change this value to <ReleaseName>-config
keys:
enabled: true
type: pvc
mountPath: /keys/
size: 10Mi
accessMode: ReadWriteOnce

service:
main:
Expand Down

0 comments on commit 4638b7d

Please sign in to comment.