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
3629 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
registry: docker.io/bitnamilegacy
9
tag: "overwritten"
10
primary:
11
extraEnvVars:
12
# We rely on this in our DB implementations: NULL (re-)sets configured columns to be initialized with CURRENT_TIMESTAMP.
13
# 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.
14
- name: MYSQL_EXTRA_FLAGS
15
value: --explicit-defaults-for-timestamp=OFF
16
resources:
17
requests:
18
memory: 128Mi
19
serviceAccount:
20
create: false
21
volumePermissions:
22
enabled: true
23
24