Skip to content

Commit

Permalink
add documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
bokristoffersson committed Nov 15, 2021
1 parent 1381513 commit a17e40e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion idsvr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ Parameter | Description | Default
`curity.config.uiEnabled`| Flag to enable/disable the service for Admin UI and Admin REST API |`false`
`curity.config.password`| The administrator password. Required if `curity.config.environmentVariableSecret` and `curity.config.configurationSecret` is not set | `null`
`curity.config.encryptionKey`| The configuration encryption key |`null`
`curity.config.environmentVariableSecret`| The data from this Secret will be mounted as environment variables |`null`
`curity.config.environmentVariableSecret`| The data from this Secret will be mounted as environment variables |`null`
`curity.config.environmentVariableConfigMap`| The data from this ConfigMap will be mounted as environment variables |`null`
`curity.config.configurationSecret`| The Secret containing configuration which is mounted as a volume |`null`
`curity.config.configurationSecretItemName`| The `curity.config.configurationSecret`'s item name, required if the Secret is set. |`null`
`curity.config.configurationConfigMap`| The ConfigMap containing configuration which is mounted as a volume |`null`
Expand Down
2 changes: 1 addition & 1 deletion idsvr/templates/deployment-admin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
- name: {{ $env.name }}
value: {{ $env.value | quote }}
{{- end }}
{{- if or ( .Values.curity.config.environmentVariableSecret .Values.curity.config.environmentVariableConfigMap )}}
{{- if ( or .Values.curity.config.environmentVariableSecret .Values.curity.config.environmentVariableConfigMap ) }}
envFrom:
{{- if .Values.curity.config.environmentVariableConfigMap }}
- configMapRef:
Expand Down
2 changes: 1 addition & 1 deletion idsvr/templates/deployment-runtime.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
- name: {{ $env.name }}
value: {{ $env.value | quote }}
{{- end }}
{{- if or ( .Values.curity.config.environmentVariableSecret .Values.curity.config.environmentVariableConfigMap ) }}
{{- if ( or .Values.curity.config.environmentVariableSecret .Values.curity.config.environmentVariableConfigMap ) }}
envFrom:
{{- if .Values.curity.config.environmentVariableConfigMap }}
- configMapRef:
Expand Down

0 comments on commit a17e40e

Please sign in to comment.