Skip to content
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

Stop Nginx socket listening on IPv6 when IPv6 is disabled #10781

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions operations/helm/charts/mimir-distributed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Entries should include a reference to the Pull Request that introduced the chang
* [ENHANCEMENT] Set resources for smoke-test job. #10608
* [BUGFIX] Create proper in-cluster remote URLs when gateway and nginx are disabled. #10625
* [BUGFIX] Fix calculation of `mimir.siToBytes` and use floating point arithmetics. #10044
* [BUGFIX] Fix Nginx listening sockets when IPv6 is disabled on in Helm values.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* [BUGFIX] Fix Nginx listening sockets when IPv6 is disabled on in Helm values.
* [BUGFIX] Fix Nginx listening sockets when IPv6 is disabled in Helm values.


## 5.6.0

Expand Down
2 changes: 2 additions & 0 deletions operations/helm/charts/mimir-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3233,7 +3233,9 @@ nginx:
proxy_read_timeout 300;
server {
listen 8080;
{{- if .Values.gateway.nginx.config.enableIPv6 }}
listen [::]:8080;
{{- end }}

{{- if .Values.nginx.basicAuth.enabled }}
auth_basic "Mimir";
Expand Down