mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-15 12:00:33 +01:00
ae7af14660
Introduce a Helm chart to streamline the deployment and management of LibreTranslate within a Kubernetes cluster. The chart includes configurable parameters, persistent storage support, authentication, scalability features, health checks, and detailed documentation. See the PR for complete details.
10 lines
259 B
YAML
10 lines
259 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "libretranslate.fullname" . }}-auth
|
|
type: Opaque
|
|
data:
|
|
auth: {{ .Values.adminUser.auth | quote }}
|
|
username: {{ .Values.adminUser.name | quote }}
|
|
password: {{ .Values.adminUser.password | quote }}
|