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 charts/ziti-controller/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Read-only mountpoint where configFile and various read-only identity dirs are pr
{{- end }}

{{/*
Writeable mountpoint where the controller will create dbFile during init
Writable mountpoint where the controller will create dbFile during init
*/}}
{{- define "dataMountDir" -}}
/persistent
Expand Down
2 changes: 1 addition & 1 deletion charts/ziti-router/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ identity:
| bootstrapEnv.ZITI_BOOTSTRAP_ENROLLMENT | string | `"true"` | enroll with controller if "true," overwrite if "force"; requires ZITI_BOOTSTRAP=true |
| bootstrapEnv.ZITI_ENROLL_TOKEN | string | `""` | override enrollmentJwt - not currently used, possibly useful for re-enroll |
| configFile | string | `"ziti-router.yaml"` | filename of router config YAML |
| configMountDir | string | `"/etc/ziti/config"` | writeable mountpoint where read-only config file is projected to allow router to write ./endpoints.yml statefile in same dir |
| configMountDir | string | `"/etc/ziti/config"` | writable mountpoint where read-only config file is projected to allow router to write ./endpoints.yml statefile in same dir |
| csr | object | `{"country":"","locality":"","organization":"","organizationalUnit":"","province":"","sans":{"dns":[],"email":[],"ip":[],"noDefaults":false,"uri":[]}}` | Certificate signing request distinguished name and subject alternative names |
| csr.country | string | `""` | country |
| csr.locality | string | `""` | city |
Expand Down
2 changes: 1 addition & 1 deletion charts/ziti-router/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ spec:
readOnly: false
- mountPath: {{ .Values.configMountDir }}/{{ .Values.configFile }}
name: ziti-router-config
subPath: {{ .Values.configFile }} # project the read-only config into the writeable volume to allow router to write ./endpoints.yml state file in same dir as config
subPath: {{ .Values.configFile }} # project the read-only config into the writable volume to allow router to write ./endpoints.yml state file in same dir as config
{{- range .Values.additionalVolumes }}
- name: {{ .name }}
mountPath: {{ .mountPath }}
Expand Down
2 changes: 1 addition & 1 deletion charts/ziti-router/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ enrollmentJwtFromSecret: false
enrollmentJwtSecretName: ""
# -- read-only mountpoint for router identity secret specified in deployment for use by router run container
identityMountDir: /etc/ziti/identity
# -- writeable mountpoint where read-only config file is projected to allow router
# -- writable mountpoint where read-only config file is projected to allow router
# to write ./endpoints.yml statefile in same dir
configMountDir: /etc/ziti/config
# -- filename of router config YAML
Expand Down
Loading