Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion k8s/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ secrets will not decrypt with a new key.
| core.storage.existingPersistentVolumeName | string | `""` | If set, pods will mount this persistent volume for job-scoped storage and we will not create a new persistent volume claim. |
| core.storage.size | string | `"200Gi"` | size of the persistent volume claim used for persistent storage |
| core.storage.storageClass | string | `""` | Which storageClass to use when creating a new persistent volume claim. Empty string uses the cluster's default StorageClass. |
| core.storage.volumePermissionsImage | string | `"busybox"` | volumePermissionsImage is the image used to set permissions on the volume |
| core.storage.volumePermissionsImage | string | `"docker.io/library/busybox"` | volumePermissionsImage is the image used to set permissions on the volume |
| core.telemetry | object | `{}` | OpenTelemetry configuration overrides for the platform deployment. |
| env | object | `{}` | Environment variables that will be applied to every deployment pod. Uses a simple key value map structure like MY_ENV_VAR: the-key and works with valueFrom as well. |
| envFromSecret | string | `""` | Optional. Name of an existing Kubernetes Secret to load as env vars (envFrom) for the API pod. When set, the chart does not create or generate the default api-env Secret; use your own Secret (for example, from Vault or sealed-secrets). |
Expand Down
4 changes: 2 additions & 2 deletions k8s/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ core:
# -- size of the persistent volume claim used for persistent storage
size: 200Gi
# -- volumePermissionsImage is the image used to set permissions on the volume
volumePermissionsImage: "busybox"
volumePermissionsImage: "docker.io/library/busybox"
# -- Annotations to add to the persistent volume claim
annotations: {}

Expand Down Expand Up @@ -870,7 +870,7 @@ envoyProxy:

# Envoy image
image:
repository: envoyproxy/envoy
repository: docker.io/envoyproxy/envoy
tag: v1.37.0
# -- Optional image digest. When set, the Envoy image renders as repository@digest.
digest: ""
Expand Down