36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
# # /db/kustomization.yaml
|
|
# apiVersion: kustomize.config.k8s.io/v1beta1
|
|
# kind: Kustomization
|
|
|
|
# namespace: db # Forces everything in this folder into the 'db' namespace
|
|
|
|
# # resources:
|
|
# # - yugabytedb2.yaml # Your StatefulSet/Service file generated via helm template
|
|
|
|
# # using Kustomize way
|
|
# helmCharts:
|
|
# - name: yugabyte
|
|
# repo: https://charts.yugabyte.com
|
|
# version: 2025.2.1 # Always pin your version!
|
|
# #version: 2.18.0 # Specify the version you want
|
|
# releaseName: yugabytedb
|
|
# namespace: db
|
|
# # This replaces the "--set" flags you used in the command line
|
|
# valuesInline:
|
|
# storage:
|
|
# master:
|
|
# storageClass: longhorn
|
|
# tserver:
|
|
# storageClass: longhorn
|
|
# replicas:
|
|
# master: 1
|
|
# tserver: 3
|
|
# enableLoadBalancer: false
|
|
# gflags:
|
|
# master:
|
|
# max_clock_skew_usec: 2000000
|
|
# time_source: system
|
|
# tserver:
|
|
# max_clock_skew_usec: 2000000
|
|
# time_source: system
|
|
# start_pgsql_proxy: true |