-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Propagate proxy values to the container #48
Conversation
- --disable-dynamic-rate-limiter | ||
- "false" | ||
{{- end }} | ||
{{- if .Values.settings.disableDynamicRateLimiter }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't you mean?
{{- if .Values.settings.disableDynamicRateLimiter }} | |
{{- if .Values.settings.aimdMaxLimit }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True, thanks!
{{- end }} | ||
{{- if .Values.settings.disableDynamicRateLimiter }} | ||
- --aimd-max-limit | ||
- {{ . }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to pass the setting explicitly, since we're not in a with
block:
- {{ . }} | |
- {{ .Values.settings.aimdMaxLimit }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a with
block.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does aimdMaxLimit
have a default value in values.yaml?
I think for regions that don't specify that it will pass an empty flag to the binary, I'd wrap this in an if
block
No description provided.