mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* initial commit * update NOTES.txt, enable cluster by default * update default etcd version add README rename default values update NOTES.txt * add quotes to app label value * disable cluster by default as TPR get's created by operator * update PV provisioner comments
33 lines
819 B
YAML
33 lines
819 B
YAML
# Default values for etcd-operator.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 1
|
|
image:
|
|
repository: quay.io/coreos/etcd-operator
|
|
tag: latest
|
|
pullPolicy: IfNotPresent
|
|
resources:
|
|
limits:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
## etcd-cluster specific values
|
|
cluster:
|
|
enabled: false
|
|
name: etcd-cluster
|
|
size: 3
|
|
version: v3.1.0-rc.0
|
|
backup:
|
|
enabled: false
|
|
## Cloud specific PV provisioner
|
|
## Supports either kubernetes.io/gce-pd or kubernetes.io/aws-ebs
|
|
provisioner: kubernetes.io/gce-pd
|
|
config:
|
|
## short snapshot interval for testing, do not use this in production!
|
|
snapshotIntervalInSecond: 30
|
|
maxSnapshot: 5
|
|
volumeSizeInMB: 512
|
|
storageType: PersistentVolume
|