File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed
Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 11apiVersion: v2
2- appVersion: v2.12.3-2024.12.17-4d75d35f4
2+ appVersion: v2.12.3-2024.12.23-4a8e092c0
33kubeVersion: ">=1.23.0-0"
44description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55name: argo-cd
6- version: 7.4.7-8 -cap-2.12.3-2024.12.17-4d75d35f4
6+ version: 7.4.7-9 -cap-2.12.3-2024.12.23-4a8e092c0
77home: https://github.com/argoproj/argo-helm
88icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99sources:
@@ -27,4 +27,4 @@ annotations:
2727 url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2828 artifacthub.io/changes: |
2929 - kind: changed
30- description: argo-cd updated to v2.12.3-2024.12.17-4d75d35f4 with fix for remove changeRevision changeRevisions fields from protobuf for compatibility with OSS cli
30+ description: argo-cd updated to v2.12.3-2024.12.23-4a8e092c0 using sources-server for application version
Original file line number Diff line number Diff line change @@ -784,6 +784,8 @@ NAME: my-release
784784| eventReporter.serviceAccount.create | bool | `true` | Create a service account for the event reporter |
785785| eventReporter.serviceAccount.labels | object | `{}` | Labels applied to created service account |
786786| eventReporter.serviceAccount.name | string | `"event-reporter"` | Service account name |
787+ | eventReporter.sourcesServer.baseURL | string | `"http://sources-server"` | base URL of sources-server |
788+ | eventReporter.sourcesServer.enabled | bool | `false` | Use sources-server logic instead of repo-server |
787789| eventReporter.statefulsetAnnotations | object | `{}` | Annotations for the event reporter StatefulSet |
788790| eventReporter.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook |
789791| eventReporter.tolerations | list | `[]` (defaults to global.tolerations) | [Tolerations] for use with node taints |
Original file line number Diff line number Diff line change 7070 {{- with (concat .Values.global.env .Values.eventReporter.env) }}
7171 {{- toYaml . | nindent 10 }}
7272 {{- end }}
73+ - name: SOURCES_SERVER_ENABLED
74+ value: {{ .Values.eventReporter.sourcesServer.enabled | quote }}
75+ - name: SOURCES_SERVER_BASE_URL
76+ value: {{ .Values.eventReporter.sourcesServer.baseURL | quote }}
7377 - name: EVENT_REPORTER_APPLICATION_SERVER
7478 value: {{ include "argo-cd.eventReporter.argocd-server-adress" . }}
7579 - name: EVENT_REPORTER_REPLICAS
Original file line number Diff line number Diff line change @@ -3843,6 +3843,13 @@ eventReporter:
38433843 # topologyKey: topology.kubernetes.io/zone
38443844 # whenUnsatisfiable: DoNotSchedule
38453845
3846+ # Configuration of sources-server using
3847+ sourcesServer:
3848+ # -- Use sources-server logic instead of repo-server
3849+ enabled: false
3850+ # -- base URL of sources-server
3851+ baseURL: "http://sources-server"
3852+
38463853 serviceAccount:
38473854 # -- Create a service account for the event reporter
38483855 create: true
You can’t perform that action at this time.
0 commit comments