Skip to content

Commit

Permalink
Adjust mysql helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
aledbf committed Jan 5, 2022
1 parent 2ebdabe commit 2b58854
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions installer/pkg/components/database/incluster/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,15 @@ var Helm = common.CompositeHelmFunc(
helm.KeyValue("mysql.serviceAccount.name", Component),
helm.ImagePullSecrets("mysql.image.pullSecrets", cfg),
helm.KeyValue("mysql.image.registry", common.ThirdPartyContainerRepo(cfg.Config.Repository, common.DockerRegistryURL)),
helm.ImagePullSecrets("mysql.metrics.image.pullSecrets", cfg),
helm.KeyValue("mysql.metrics.image.registry", common.ThirdPartyContainerRepo(cfg.Config.Repository, common.DockerRegistryURL)),
helm.ImagePullSecrets("mysql.volumePermissions.image.pullSecrets", cfg),
helm.KeyValue("mysql.volumePermissions.image.registry", common.ThirdPartyContainerRepo(cfg.Config.Repository, common.DockerRegistryURL)),
// improve start time
helm.KeyValue("mysql.primary.startupProbe.enabled", "false"),
helm.KeyValue("mysql.primary.readinessProbe.initialDelaySeconds", "20"),
helm.KeyValue("mysql.metrics.enabled", "false"),

// helm.ImagePullSecrets("mysql.metrics.image.pullSecrets", cfg),
// helm.KeyValue("mysql.metrics.image.registry", common.ThirdPartyContainerRepo(cfg.Config.Repository, common.DockerRegistryURL)),
},
// This is too complex to be sent as a string
FileValues: []string{
Expand Down

0 comments on commit 2b58854

Please sign in to comment.