Skip to content

Commit

Permalink
Update helm chart and Grafana dashboard
Browse files Browse the repository at this point in the history
Pull-in some fixes that I've done and verified in a real env.
  • Loading branch information
adidenko committed Nov 26, 2024
1 parent 59f57e9 commit cdbdcbd
Show file tree
Hide file tree
Showing 5 changed files with 2,369 additions and 2,050 deletions.
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

0 comments on commit cdbdcbd

Please sign in to comment.