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

Update helm chart and Grafana dashboard #79

Merged
merged 1 commit into from
Nov 27, 2024
Merged
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
2 changes: 1 addition & 1 deletion chart/minigun/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.1.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.6.0"
appVersion: "0.6.1"
12 changes: 6 additions & 6 deletions chart/minigun/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
{{- end }}
benchmark: {{ $name }}
spec:
{{- with $spec.imagePullSecrets }}
{{- with $spec.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand All @@ -43,12 +43,12 @@ spec:
containers:
- name: minigun
args:
- --name={{ $name }}
- -name
- {{ $name | quote }}
{{- range $k, $v := $spec.args }}
{{- if eq $k "http-header" }}
- --{{ $k }}='{{ $v }}'
{{- else }}
- --{{ $k }}={{ $v }}
- -{{ $k }}
{{- if ne (printf "%v" $v) "true" }}
- {{ $v | quote }}
{{- end }}
{{- end }}
securityContext:
Expand Down
1 change: 0 additions & 1 deletion chart/minigun/templates/servicemonitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ spec:
- __name__
path: /metrics
port: http
relabelings:
scheme: http
scrapeTimeout: {{ $spec.serviceMonitor.scrapeTimeout }}
jobLabel: app.kubernetes.io/instance
Expand Down
2 changes: 1 addition & 1 deletion chart/minigun/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ benchmarkDeployments:
repository: ghcr.io/wayfair-incubator/minigun
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "v0.6.0"
tag: "v0.6.1"

imagePullSecrets: []
nameOverride: ""
Expand Down
Loading