Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from MrAnno/image-extraargs
Browse files Browse the repository at this point in the history
axosyslog-collector: add image.extraArgs
  • Loading branch information
alltilla authored May 6, 2023
2 parents 210ac99 + 088d7a3 commit 36045f2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/axosyslog-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: axosyslog-collector
description: AxoSyslog kubernetes log collector
description: AxoSyslog Kubernetes log collector
type: application
version: 0.1.1
version: 0.2.0
appVersion: "4.1.1"
4 changes: 4 additions & 0 deletions charts/axosyslog-collector/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ spec:
- name: "axosyslog-collector"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: "{{ .Values.image.pullPolicy }}"
{{- if .Values.image.extraArgs }}
args:
{{ toYaml .Values.image.extraArgs | indent 12 }}
{{- end }}
resources:
{{ toYaml ( .Values.resources | default .Values.daemonset.resources ) | indent 12 }}
securityContext: {{ toYaml ( .Values.podSecurityContext | default .Values.daemonset.securityContext ) | nindent 12 }}
Expand Down
1 change: 1 addition & 0 deletions charts/axosyslog-collector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ image:
repository: ghcr.io/axoflow/axosyslog
pullPolicy: IfNotPresent
tag: "nightly" # until releasing v4.2
extraArgs: []

imagePullSecrets: []
nameOverride: ""
Expand Down

0 comments on commit 36045f2

Please sign in to comment.