Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/install/installer/third_party/charts/mysql/values.yaml
2501 views
1
# Copyright (c) 2021 Gitpod GmbH. All rights reserved.
2
# Licensed under the GNU Affero General Public License (AGPL).
3
# See License.AGPL.txt in the project root for license information.
4
5
mysql:
6
fullnameOverride: mysql
7
image:
8
tag: "overwritten"
9
primary:
10
extraEnvVars:
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_FLAGS
14
value: --explicit-defaults-for-timestamp=OFF
15
resources:
16
requests:
17
memory: 128Mi
18
serviceAccount:
19
create: false
20
volumePermissions:
21
enabled: true
22
23