mirror of
https://github.com/helm/charts.git
synced 2026-08-19 20:37:05 +00:00
* Add namerd chart * (namerd) add README * replica count is configurable * use ConfigMap only for pod configuration; fix typo * only k8s storage requires "experimental: true" * update linkerd source URL * update README * API and sync service ports are configurable * expose admin port as service
32 lines
602 B
YAML
32 lines
602 B
YAML
# Default values for namerd.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
replicaCount: 3
|
|
namerd:
|
|
image:
|
|
repository: buoyantio/namerd:0.9.1
|
|
pullPolicy: IfNotPresent
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 0
|
|
memory: 512Mi
|
|
kubectl:
|
|
image:
|
|
repository: buoyantio/kubectl:v1.4.0
|
|
pullPolicy: IfNotPresent
|
|
resources:
|
|
# limits:
|
|
# cpu: 10m
|
|
# memory: 32Mi
|
|
requests:
|
|
cpu: 0
|
|
memory: 32Mi
|
|
service:
|
|
type: ClusterIP
|
|
syncPort: 4100
|
|
apiPort: 4180
|
|
adminPort: 9991
|