23 lines
838 B
Plaintext
23 lines
838 B
Plaintext
Thank you for installing {{ .Chart.Name }} {{ printf "v%s" .Chart.Version }}
|
|
|
|
The S3 endpoint is available at:
|
|
|
|
{{ printf "https://%s.%s" (include "s3gw.serviceName" .) .Values.publicDomain | indent 4 }}
|
|
{{ if .Values.ui.enabled}}
|
|
and the web interface is available at:
|
|
|
|
{{ printf "https://%s.%s" (include "s3gw.uiServiceName" .) .Values.ui.publicDomain | indent 4 }}
|
|
{{- end }}
|
|
{{ if and (not .Values.useExistingSecret) (empty .Values.accessKey) }}
|
|
An access key has been generated: {{ include "s3gw.defaultAccessKey" . | quote }}
|
|
{{- end }}
|
|
{{- if and (not .Values.useExistingSecret) (empty .Values.secretKey) }}
|
|
A secret key has been generated: {{ include "s3gw.defaultSecretKey" . | quote }}
|
|
{{ end }}
|
|
|
|
{{- if .Values.cosi.enabled }}
|
|
Name of the COSI driver:
|
|
|
|
{{ printf "%s" (include "s3gw-cosi.driverName" .) | indent 4 }}
|
|
{{ end }}
|