Skip to content

Commit

Permalink
fix chart templates
Browse files Browse the repository at this point in the history
  • Loading branch information
aatarasoff committed Dec 7, 2023
1 parent 6168fe2 commit cf783e7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pbuf-registry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: pbuf-registry
description: A Helm chart for PBUF Registry
type: application
version: 0.4.0-rc.1
version: 0.4.0-rc.1-fix.1
appVersion: "v0.4.0-rc.1"

maintainers:
Expand Down
6 changes: 4 additions & 2 deletions pbuf-registry/templates/background.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ spec:
{{- toYaml $.Values.securityContext | nindent 12 }}
image: "{{ $.Values.image.repository }}:{{ $.Values.image.tag | default $.Chart.AppVersion }}"
imagePullPolicy: {{ $.Values.image.pullPolicy }}
command: {{ $spec.command }}
args: {{ $spec.args }}
command:
{{- toYaml $spec.command | nindent 12 }}
args:
{{- toYaml $spec.args | nindent 12 }}
env:
{{- include "pbuf-registry.env" $ | nindent 12 }}
ports:
Expand Down
6 changes: 4 additions & 2 deletions pbuf-registry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ background:
# requests:
# cpu: 100m
# memory: 128Mi
command: /app/pbuf-registry
command:
- /app/pbuf-registry
args:
- compaction
protoparser:
Expand All @@ -123,6 +124,7 @@ background:
# requests:
# cpu: 100m
# memory: 128Mi
command: /app/pbuf-registry
command:
- /app/pbuf-registry
args:
- proto-parsing

0 comments on commit cf783e7

Please sign in to comment.