mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/kiam] added whitelist argument in agent-daemonset.yaml (#14397)
* added whitelist argument in agent-daemonset.yaml Signed-off-by: Pravar Agrawal <pravarag@gmail.com> * [stable/kiam] added whitelist argument for metadata API path - Makes it possible to specify whitelist arguments for allowing other AWS metadata API paths which are currently blocked by default - Update README.md - Bump the version Signed-off-by: Pravar Agrawal <pravarag@gmail.com> * [stable/kiam] bump the version of chart Signed-off-by: Pravar Agrawal <pravarag@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
1406fb11bd
commit
900f6504be
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: kiam
|
||||
version: 2.4.0
|
||||
version: 2.4.1
|
||||
appVersion: 3.2
|
||||
description: Integrate AWS IAM with Kubernetes
|
||||
keywords:
|
||||
|
||||
@@ -98,6 +98,7 @@ Parameter | Description | Default
|
||||
`agent.image.tag` | Agent image tag | `v3.2`
|
||||
`agent.image.pullPolicy` | Agent image pull policy | `IfNotPresent`
|
||||
`agent.dnsPolicy` | Agent pod DNS policy | `ClusterFirstWithHostNet`
|
||||
`agent.whiteListRouteRegexp` | Agent pod whitelist metadata API path argument regex | `{}`
|
||||
`agent.extraArgs` | Additional agent container arguments | `{}`
|
||||
`agent.extraEnv` | Additional agent container environment variables | `{}`
|
||||
`agent.extraHostPathMounts` | Additional agent container hostPath mounts | `[]`
|
||||
|
||||
@@ -94,6 +94,9 @@ spec:
|
||||
- --prometheus-listen-addr=0.0.0.0:{{ .Values.agent.prometheus.port }}
|
||||
- --prometheus-sync-interval={{ .Values.agent.prometheus.syncInterval }}
|
||||
{{- end }}
|
||||
{{- if .Values.agent.whiteListRouteRegexp }}
|
||||
- --whitelist-route-regexp={{ .Values.agent.whiteListRouteRegexp }}
|
||||
{{- end }}
|
||||
- --gateway-timeout-creation={{ .Values.agent.gatewayTimeoutCreation }}
|
||||
{{- range $key, $value := .Values.agent.extraArgs }}
|
||||
{{- if $value }}
|
||||
|
||||
@@ -14,6 +14,11 @@ agent:
|
||||
tag: v3.2
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
## agent whitelist of proxy routes matching this reg-ex
|
||||
##
|
||||
# whiteListRouteRegexp:
|
||||
|
||||
|
||||
## Logging settings
|
||||
##
|
||||
log:
|
||||
|
||||
Reference in New Issue
Block a user