Path: blob/main/install/installer/third_party/charts/mysql/values.yaml
3629 views
# Copyright (c) 2021 Gitpod GmbH. All rights reserved.1# Licensed under the GNU Affero General Public License (AGPL).2# See License.AGPL.txt in the project root for license information.34mysql:5fullnameOverride: mysql6image:7registry: docker.io/bitnamilegacy8tag: "overwritten"9primary:10extraEnvVars:11# We rely on this in our DB implementations: NULL (re-)sets configured columns to be initialized with CURRENT_TIMESTAMP.12# OFF is the default as documented [here](https://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_explicit_defaults_for_timestamp) (we also see this in GCP), but not for this chart.13- name: MYSQL_EXTRA_FLAGS14value: --explicit-defaults-for-timestamp=OFF15resources:16requests:17memory: 128Mi18serviceAccount:19create: false20volumePermissions:21enabled: true222324