mirror of
https://github.com/helm/charts.git
synced 2026-08-19 12:27:02 +00:00
* Add support for encrypted connection between zetcd and etcd. Fixes #4898 * Remove added empty lines * Fix problems found by helm lint * Fix whitespace * Fixes after review * Remove trailing namespaces, increment chart version
48 lines
1.3 KiB
YAML
48 lines
1.3 KiB
YAML
# Default values for zetcd.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 1
|
|
|
|
image:
|
|
repository: quay.io/coreos/zetcd
|
|
tag: v0.0.3
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
name: zetcd
|
|
type: ClusterIP
|
|
externalPort: 2181
|
|
internalPort: 2181
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
## Node labels for pod assignment
|
|
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
|
|
##
|
|
nodeSelector: {}
|
|
|
|
etcd:
|
|
operatorEnabled: true
|
|
endpoints: localhost:2379
|
|
|
|
# Communication with etcd can be encrypted and authenticated with a certificate.
|
|
# In order to enable it, add 'tls' section providing existing secret
|
|
# containing CA certificate, client certificate and client key.
|
|
# tls:
|
|
# existingSecret: etcd-tls-secret
|
|
# cert: client.crt
|
|
# key: client.key
|
|
# ca: ca.crt
|
|
|
|
etcd-operator:
|
|
cluster:
|
|
enabled: true
|