Skip to content

Commit

Permalink
Add values for config map settings, including access log. (#6797)
Browse files Browse the repository at this point in the history
* Add values for config map settings, including access log.
More docs.

* Updates and improvements for the stress-testing configs.

* Address review comments

* Merged wrong files

* Add the setup helm file - this change now depend on the previous PR.

* Sync with remote, remove accidentally added files.

* Another accidental file
  • Loading branch information
costinm authored and rshriram committed Jul 3, 2018
1 parent 62d0e30 commit 65a76fb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 19 deletions.
Expand Up @@ -11,7 +11,7 @@ metadata:
istio: sidecar-injector
data:
config: |-
policy: {{ .Values.global.proxy.policy }}
policy: {{ .Values.global.proxy.autoInject }}
template: |-
initContainers:
- name: istio-init
Expand Down
4 changes: 3 additions & 1 deletion install/kubernetes/helm/istio-remote/values.yaml
Expand Up @@ -37,7 +37,9 @@ global:
# Redirect only selected ports: --includeInboundPorts="80,8080"
includeInboundPorts: "*"
excludeInboundPorts: ""
policy: enabled

# This controls the 'policy' in the sidecar injector.
autoInject: enabled

# Sets the destination Statsd in envoy (the value of the "--statsdUdpAddress" proxy argument
# would be <host>:<port>).
Expand Down
13 changes: 0 additions & 13 deletions install/kubernetes/helm/istio/templates/configmap.yaml
Expand Up @@ -27,14 +27,6 @@ data:
mixerReportServer: istio-telemetry.{{ .Release.Namespace }}.svc.cluster.local:15004
# This is the ingress service name, update if you used a different name
ingressService: istio-ingress
#
# Along with discoveryRefreshDelay, this setting determines how
# frequently should Envoy fetch and update its internal configuration
# from istio Pilot. Lower refresh delay results in higher CPU
# utilization and potential performance loss in exchange for faster
# convergence. Tweak this value according to your setup.
# Deprecated: using push.
rdsRefreshDelay: {{ .Values.global.refreshInterval }}
# Unix Domain Socket through which envoy communicates with NodeAgent SDS to get
# key/cert for mTLS. Use secret-mount files instead of SDS if set to empty.
Expand All @@ -45,11 +37,6 @@ data:
#
defaultConfig:
# NOTE: If you change any values in this section, make sure to make
# the same changes in start up args in istio-ingress pods.
# See rdsRefreshDelay for explanation about this setting.
# Deprecated: using push.
discoveryRefreshDelay: {{ .Values.global.refreshInterval }}
#
# TCP connection timeout between Envoy & the application, and between Envoys.
connectTimeout: 10s
Expand Down
Expand Up @@ -11,7 +11,7 @@ metadata:
istio: sidecar-injector
data:
config: |-
policy: {{ .Values.global.proxy.autoinject }}
policy: {{ .Values.global.proxy.autoInject }}
template: |-
initContainers:
- name: istio-init
Expand Down
4 changes: 1 addition & 3 deletions install/kubernetes/helm/istio/values.yaml
Expand Up @@ -9,11 +9,9 @@ global:
# Releases are published to docker hub under 'istio' project.
# Daily builds from prow are on gcr.io, and nightly builds from circle on
hub: docker.io/istionightly
#hub: docker.io/istio

# Default tag for Istio images.
tag: nightly-master
#tag: 1.0.latest

proxy:
image: proxyv2
Expand Down Expand Up @@ -42,7 +40,7 @@ global:
excludeInboundPorts: ""

# This controls the 'policy' in the sidecar injector.
autoinject: enabled
autoInject: enabled

# Sets the destination Statsd in envoy (the value of the "--statsdUdpAddress" proxy argument
# would be <host>:<port>).
Expand Down

0 comments on commit 65a76fb

Please sign in to comment.