You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good idea, however since Combodo recommends to use MariaDB over MySQL, I would add that as dependency instead. And preferable also the official MariaDB container. PRs are welcome.
Just example,
add to chart:
dependencies:
version: 9.10.0
repository: https://charts.bitnami.com/bitnami
add to values:
mysql:
enabled: true
auth:
rootPassword: your-root-password
database: itop
username: itop
password: your-password
primary:
persistence:
enabled: true
size: 10Gi
add to templates/deployment.yaml:
env:
value: {{ .Release.Name }}-mysql
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-mysql
key: username
valueFrom:
secretKeyRef:
name: {{ .Release.Name }}-mysql
key: password
value: itop
The text was updated successfully, but these errors were encountered: