Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
revert helm breakage from #427 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
pingles authored Dec 10, 2020
1 parent 7f7fd09 commit 600228f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion helm/kiam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ The following table lists the configurable parameters of the kiam chart and thei
| `agent.image.tag` | Agent image tag | `v3.6` |
| `agent.image.pullPolicy` | Agent image pull policy | `IfNotPresent` |
| `agent.dnsPolicy` | Agent pod DNS policy | `ClusterFirstWithHostNet` |
| `agent.allowRouteRegexp` | Agent metadata proxy server only allows accesses to paths matching this regexp | `{}` |
| `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 | `[]` |
Expand Down
4 changes: 2 additions & 2 deletions helm/kiam/templates/agent-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ spec:
- --prometheus-listen-addr=0.0.0.0:{{ .Values.agent.prometheus.port }}
- --prometheus-sync-interval={{ .Values.agent.prometheus.syncInterval }}
{{- end }}
{{- if .Values.agent.allowRouteRegexp }}
- --allow-route-regexp={{ .Values.agent.allowRouteRegexp }}
{{- if .Values.agent.whiteListRouteRegexp }}
- --whitelist-route-regexp={{ .Values.agent.whiteListRouteRegexp }}
{{- end }}
- --gateway-timeout-creation={{ .Values.agent.gatewayTimeoutCreation }}
{{- if .Values.agent.keepaliveParams.time }}
Expand Down
4 changes: 2 additions & 2 deletions helm/kiam/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ agent:
tag: v3.6
pullPolicy: IfNotPresent

## agent permits only request paths matching this reg-ex
## agent whitelist of proxy routes matching this reg-ex
##
# allowRouteRegexp:
# whiteListRouteRegexp:


## Logging settings
Expand Down

0 comments on commit 600228f

Please sign in to comment.