-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
fix: Fixes read & backend replicas settings #12828
Conversation
Signed-off-by: thorker <th.kerber+github@gmail.com>
@@ -23,7 +23,7 @@ spec: | |||
{{- if eq .Values.deploymentMode "SingleBinary" }} | |||
replicas: 0 | |||
{{- else }} | |||
replicas: {{ .Values.write.replicas }} | |||
replicas: {{ .Values.backend.replicas }} |
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.
4 lines above this still says if not .Values.write.autoscaling.enabled
. Shouldn't that use backend as well?
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.
Good point
@@ -23,7 +23,7 @@ spec: | |||
{{- if eq .Values.deploymentMode "SingleBinary" }} | |||
replicas: 0 | |||
{{- else }} | |||
replicas: {{ .Values.write.replicas }} | |||
replicas: {{ .Values.read.replicas }} |
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.
Same here
production/helm/loki/Chart.yaml
Outdated
@@ -3,7 +3,7 @@ name: loki | |||
description: Helm chart for Grafana Loki in simple, scalable mode | |||
type: application | |||
appVersion: 3.0.0 | |||
version: 6.3.4 | |||
version: 6.3.5 |
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.
The latest version is 6.4 now. Please use 6.4.1. And also please update production/helm/loki/CHANGELOG.md
and production/helm/loki/README.md
.
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.
Thought README & CHANGELOG will be generated via CI Pipeline or did I missed sth?
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.
Not for the Helm charts at the moment so they have to be updated by hand.
Signed-off-by: thorker <th.kerber+github@gmail.com>
# Conflicts: # production/helm/loki/Chart.yaml
Signed-off-by: thorker <th.kerber+github@gmail.com> Signed-off-by: thorker <th.kerber+github@gmail.com>
Signed-off-by: thorker <th.kerber+github@gmail.com> Signed-off-by: thorker <th.kerber+github@gmail.com>
Signed-off-by: thorker <th.kerber+github@gmail.com> Co-authored-by: Michel Hollands <42814411+MichelHollands@users.noreply.github.com>
Signed-off-by: thorker <th.kerber+github@gmail.com> Co-authored-by: Michel Hollands <42814411+MichelHollands@users.noreply.github.com>
What this PR does / why we need it:
Fixes incorrect configuration of read & backend replicas
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Checklist
CONTRIBUTING.md
guide (required)docs/sources/setup/upgrade/_index.md
production/helm/loki/Chart.yaml
and updateproduction/helm/loki/CHANGELOG.md
andproduction/helm/loki/README.md
. Example PRdeprecated-config.yaml
anddeleted-config.yaml
files respectively in thetools/deprecated-config-checker
directory. Example PR