mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# Default values for cockroachdb.
|
|
# This is a YAML-formatted file.
|
|
# Declare name/value pairs to be passed into your templates.
|
|
# name: value
|
|
|
|
Name: "cockroachdb"
|
|
Image: "cockroachdb/cockroach"
|
|
ImageTag: "v2.0.0"
|
|
ImagePullPolicy: "Always"
|
|
Replicas: 3
|
|
MaxUnavailable: 1
|
|
Component: "cockroachdb"
|
|
GrpcPort: 26257
|
|
HttpPort: 8080
|
|
Resources:
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "512Mi"
|
|
Storage: "1Gi"
|
|
## Persistent Volume Storage Class for database data
|
|
## If defined, storageClassName: <StorageClass>
|
|
## If set to "-", storageClassName: "", which disables dynamic provisioning
|
|
## If undefined or set to null, no storageClassName spec is
|
|
## set, choosing the default provisioner. (gp2 on AWS, standard on
|
|
## GKE, AWS & OpenStack)
|
|
##
|
|
StorageClass: null
|
|
CacheSize: "25%"
|
|
MaxSQLMemory: "25%"
|
|
ClusterDomain: "cluster.local"
|
|
NetworkPolicy:
|
|
Enabled: false
|
|
AllowExternal: true
|
|
Service:
|
|
type: ClusterIP
|
|
Secure:
|
|
Enabled: false
|
|
RequestCertsImage: "cockroachdb/cockroach-k8s-request-cert"
|
|
RequestCertsImageTag: "0.3"
|
|
ServiceAccount:
|
|
# Specifies whether a service account should be created.
|
|
Create: true
|
|
# The name of the service account to use.
|
|
# If not set and create is true, a name is generated.
|
|
Name:
|