Skip to content

Commit

Permalink
Helm Chart: fix http proxy flag and value plugged into one container …
Browse files Browse the repository at this point in the history
…argument (#293)
  • Loading branch information
sami-alajrami authored Aug 13, 2024
1 parent d77f0dc commit 4dc142a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/k8s-reporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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: 1.5.0
version: 1.5.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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.10.11"
appVersion: "2.10.13"
3 changes: 2 additions & 1 deletion charts/k8s-reporter/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ spec:
- --dry-run
{{ end }}
{{ if .Values.reporterConfig.httpProxy }}
- --http-proxy {{ .Values.reporterConfig.httpProxy }}
- --http-proxy
- {{ .Values.reporterConfig.httpProxy }}
{{ end }}

resources:
Expand Down
2 changes: 1 addition & 1 deletion charts/k8s-reporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
# -- the kosli reporter image pull policy
pullPolicy: IfNotPresent
# -- the kosli reporter image tag, overrides the image tag whose default is the chart appVersion.
tag: "v2.10.11"
tag: "v2.10.13"

# -- overrides the name used for the created k8s resources. If `fullnameOverride` is provided, it has higher precedence than this one
nameOverride: ""
Expand Down

0 comments on commit 4dc142a

Please sign in to comment.