Path: blob/main/install/installer/third_party/charts/mysql/values.yaml
2501 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:7tag: "overwritten"8primary:9extraEnvVars:10# We rely on this in our DB implementations: NULL (re-)sets configured columns to be initialized with CURRENT_TIMESTAMP.11# 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.12- name: MYSQL_EXTRA_FLAGS13value: --explicit-defaults-for-timestamp=OFF14resources:15requests:16memory: 128Mi17serviceAccount:18create: false19volumePermissions:20enabled: true212223