Skip to content

Commit

Permalink
set default extraArgs (#47)
Browse files Browse the repository at this point in the history
* set default extraArgs

* fix lint space

* set watch args

* use file not directory

* update mount path
  • Loading branch information
QSummerY authored Apr 26, 2023
1 parent 099e02e commit 2802adc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/pint/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 4 additions & 4 deletions charts/pint/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ spec:
command:
- pint
args:
- --config=/etc/pint/config/pint.hcl
- --config=/config/pint.hcl
- watch
- --listen=:8008
{{- with .Values.extraArgs }}
{{- toYaml . | nindent 12 }}
{{- end}}
- /etc/prometheus/rules/
- /rules/*.yaml
volumeMounts:
- mountPath: /etc/prometheus/rules
- mountPath: /rules
name: prometheus-rulefiles
- mountPath: /etc/pint/config
- mountPath: /config
name: pint-config
{{- with .Values.extraMounts }}
{{- toYaml . | nindent 12 }}
Expand Down

0 comments on commit 2802adc

Please sign in to comment.