Skip to content

[chart] Migrate mysql from stable repository #3786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions chart/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ dependencies:
repository: https://helm.min.io/
version: 8.0.7
- name: mysql
repository: https://charts.helm.sh/stable
version: 1.6.9
repository: https://charts.bitnami.com/bitnami
version: 8.5.1
- name: rabbitmq
repository: https://charts.bitnami.com/bitnami
version: 8.11.4
digest: sha256:870b60fff36fb9c2868887cf688931ef1a2ef47c493c46fe27df63d53a71ed7b
generated: "2021-03-23T19:53:58.841384532-03:00"
digest: sha256:9cbb115287d3731701c556ac1b16be374e8079afda5911a98b551de7c3f04a2f
generated: "2021-04-06T15:40:05.531453033-04:00"
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ dependencies:
repository: https://helm.min.io/
condition: minio.enabled
- name: mysql
version: 1.6.9
repository: https://charts.helm.sh/stable
version: 8.5.1
repository: https://charts.bitnami.com/bitnami
condition: mysql.enabled
- name: rabbitmq
version: 8.11.4
Expand Down
4 changes: 2 additions & 2 deletions chart/templates/db-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
kind: service
stage: {{ .Values.installation.stage }}
spec:
ports:
ports:
- protocol: TCP
port: 3306
targetPort: 3306
Expand All @@ -26,7 +26,7 @@ spec:
component: {{ $comp.name }}
kind: pod
{{- else }}
app: mysql
app.kubernetes.io/name: mysql
{{- end }}
type: {{ $comp.serviceType }}
sessionAffinity: None
18 changes: 8 additions & 10 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -506,18 +506,16 @@ minio:
mysql:
enabled: true
fullnameOverride: mysql
testFramework:
enabled: false
existingSecret: db-password
image:
tag: 5.7
auth:
existingSecret: db-password
serviceAccount:
create: false
name: db
extraVolumes: |
- name: init-scripts
configMap:
name: db-init-scripts
extraVolumeMounts: |
- mountPath: /docker-entrypoint-initdb.d
name: init-scripts
initdbScriptsConfigMap: db-init-scripts
volumePermissions:
enabled: true

rabbitmq:
fullnameOverride: "messagebus"
Expand Down