Merge pull request #6625 from Rory-Z/chore/fix-spelling-errors-for-4.4
chore(helm): fix spell errors
This commit is contained in:
commit
6f74a6431c
|
@ -82,7 +82,12 @@ spec:
|
||||||
claimName: {{ tpl . $ }}
|
claimName: {{ tpl . $ }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.emqxLicneseSecretName }}
|
{{- if .Values.emqxLicenseSecretName }}
|
||||||
|
- name: emqx-license
|
||||||
|
secret:
|
||||||
|
secretName: {{ .Values.emqxLicenseSecretName }}
|
||||||
|
## Compatible with previous misspellings
|
||||||
|
{{- else if .Values.emqxLicneseSecretName }}
|
||||||
- name: emqx-license
|
- name: emqx-license
|
||||||
secret:
|
secret:
|
||||||
secretName: {{ .Values.emqxLicneseSecretName }}
|
secretName: {{ .Values.emqxLicneseSecretName }}
|
||||||
|
@ -150,7 +155,13 @@ spec:
|
||||||
- name: emqx-loaded-modules
|
- name: emqx-loaded-modules
|
||||||
mountPath: "/opt/emqx/data/loaded_modules"
|
mountPath: "/opt/emqx/data/loaded_modules"
|
||||||
subPath: "loaded_modules"
|
subPath: "loaded_modules"
|
||||||
{{ if .Values.emqxLicneseSecretName }}
|
{{ if .Values.emqxLicenseSecretName }}
|
||||||
|
- name: emqx-license
|
||||||
|
mountPath: "/opt/emqx/etc/emqx.lic"
|
||||||
|
subPath: "emqx.lic"
|
||||||
|
readOnly: true
|
||||||
|
## Compatible with previous misspellings
|
||||||
|
{{ else if .Values.emqxLicneseSecretName }}
|
||||||
- name: emqx-license
|
- name: emqx-license
|
||||||
mountPath: "/opt/emqx/etc/emqx.lic"
|
mountPath: "/opt/emqx/etc/emqx.lic"
|
||||||
subPath: "emqx.lic"
|
subPath: "emqx.lic"
|
||||||
|
|
|
@ -114,10 +114,10 @@ emqxLoadedModules: >
|
||||||
{emqx_mod_subscription, false}.
|
{emqx_mod_subscription, false}.
|
||||||
{emqx_mod_topic_metrics, false}.
|
{emqx_mod_topic_metrics, false}.
|
||||||
|
|
||||||
## EMQX Enterprise Edition requires manual creation of a Secret containing the licensed content. Write the name of Secret to the value of "emqxLicneseSecretName"
|
## EMQX Enterprise Edition requires manual creation of a Secret containing the licensed content. Write the name of Secret to the value of "emqxLicenseSecretName"
|
||||||
## Example:
|
## Example:
|
||||||
## kubectl create secret generic emqx-license-secret-name --from-file=/path/to/emqx.lic
|
## kubectl create secret generic emqx-license-secret-name --from-file=/path/to/emqx.lic
|
||||||
emqxLicneseSecretName:
|
emqxLicenseSecretName:
|
||||||
|
|
||||||
service:
|
service:
|
||||||
## Service type
|
## Service type
|
||||||
|
|
Loading…
Reference in New Issue