mirror of
https://github.com/helm/charts.git
synced 2026-08-19 20:37:05 +00:00
* Version bump linkerd:1.1.0 and kubectl:v1.6.2 * Chart version bump and linkerd 1.1.2
94 lines
1.9 KiB
YAML
94 lines
1.9 KiB
YAML
# Default values for linkerd.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
linkerd:
|
|
## linkerd Pod annotations:
|
|
##
|
|
# annotations:
|
|
# iam.amazonaws.com/role: linkerd
|
|
|
|
## Additional linkerd container arguments
|
|
##
|
|
# extraArgs:
|
|
|
|
## linkerd service port
|
|
##
|
|
httpPort: 80
|
|
|
|
## linkerd service port name
|
|
## Default: 'admin'
|
|
##
|
|
# httpPortName: admin
|
|
|
|
## linkerd user service discovery port name
|
|
## Default: 'http'
|
|
discoveryPortName: http
|
|
|
|
## linkerd Docker image
|
|
##
|
|
image: buoyantio/linkerd:1.1.2
|
|
|
|
ingress:
|
|
## If true, linkerd Ingress will be created
|
|
##
|
|
enabled: false
|
|
|
|
## linkerd Ingress annotations
|
|
##
|
|
# annotations:
|
|
# kubernetes.io/ingress.class: nginx
|
|
# kubernetes.io/tls-acme: 'true'
|
|
|
|
## linkerd Ingress hostnames
|
|
## Must be provided if Ingress is enabled
|
|
##
|
|
# hosts:
|
|
# - linkerd.domain.com
|
|
|
|
## linkerd Ingress TLS configuration
|
|
## Secrets must be manually created in the namespace
|
|
##
|
|
# tls:
|
|
# - secretName:
|
|
# hosts:
|
|
# - linkerd.domain.com
|
|
|
|
## linkerd container name
|
|
##
|
|
name: l5d
|
|
# Resource configuration for the linkerd pods
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 0
|
|
memory: 512Mi
|
|
|
|
kubectl:
|
|
image: buoyantio/kubectl:v1.6.2
|
|
# Resource configuration for the kubectl pods
|
|
resources:
|
|
# limits:
|
|
# cpu: 10m
|
|
# memory: 32Mi
|
|
requests:
|
|
cpu: 0
|
|
memory: 32Mi
|
|
|
|
prometheus:
|
|
# Enable Prometheus service metrics
|
|
scrape: true
|
|
# Enable Prometheus endpoint metrics
|
|
probe: true
|
|
# Path for Prometheus metrics
|
|
path: /admin/metrics/prometheus
|
|
service:
|
|
# Type of service to use for linkerd
|
|
type: ClusterIP
|
|
|
|
# linkerd configuration. The default configuration is located inside the ConfigMap.
|
|
# Allows to overrides the linkerd configuration
|
|
config:
|