github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/mysql/values.yaml (about)

     1  # Default values for mysql.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  image:
     6    registry: 
     7    repository: mysql
     8    pullPolicy: IfNotPresent
     9    # Overrides the image tag whose default is the chart appVersion.
    10    #tag: 8.0.33
    11    tag: 5.7
    12  
    13  ## MySQL Cluster parameters
    14  cluster:
    15    ## CLUSTER_ID
    16    clusterId: "1"
    17    ## CLUSTER_START_INDEX
    18    clusterStartIndex: "1"
    19    ## @param cluster.replicaSetCount
    20    replicaSetCount: 3
    21    ## MYSQL_TEMPLATE_CONFIG
    22    templateConfig:
    23    ## MYSQL_CUSTOM_CONFIG
    24    customConfig:
    25    ## MYSQL_DYNAMIC_CONFIG
    26    dynamicConfig:
    27    ## KB_EMBEDDED_WESQL
    28    kbWeSQLImage: "1"
    29  
    30  ## MySQL Authentication parameters
    31  auth:
    32    ## MYSQL_ROOT_HOST
    33    rootHost: "%"
    34    ## @param auth.createDatabase Whether to create the .Values.auth.database or not
    35    ##
    36    createDatabase: true
    37    ## @param auth.database Name for a custom database to create
    38    ## MYSQL_DATABASE
    39    database: "mydb"
    40    ## @param auth.username Name for a custom user to create
    41    ## MYSQL_USER
    42    username: "u1"
    43    ## MYSQL_PASSWORD
    44    password: "u1"
    45    ## @param auth.replicationUser MySQL replication user
    46    ##
    47    replicationUser: "replicator"
    48    ## @param auth.replicationPassword MySQL replication user password. Ignored if existing secret is provided
    49    ##
    50    replicationPassword: ""
    51  
    52  
    53  configTemplate:
    54    ## @param config template name
    55    ## name: mysql-3node-tpl-8.0
    56  
    57  imagePullSecrets: []
    58  nameOverride: ""
    59  fullnameOverride: ""
    60  clusterVersionOverride: ""
    61  
    62  logConfigs:
    63    error: /data/mysql/log/mysqld-error.log
    64    slow: /data/mysql/log/mysqld-slowquery.log
    65    general: /data/mysql/log/mysqld.log
    66  
    67  roleProbe:
    68    failureThreshold: 2
    69    periodSeconds: 1
    70    timeoutSeconds: 1
    71  
    72  metrics:
    73    image:
    74      registry: infracreate-registry.cn-zhangjiakou.cr.aliyuncs.com
    75      repository: apecloud/agamotto
    76      tag: 0.1.2-beta.1
    77      pullPolicy: IfNotPresent
    78  
    79    service:
    80      port: 9104