Merge branch 'argo-cd' into CR-26733-bump-dex-to-2.41.1
This commit is contained in:
commit
ae8d0d32d9
4 changed files with 16 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
apiVersion: v2
|
||||
appVersion: v2.12.3-2024.12.17-4d75d35f4
|
||||
appVersion: v2.12.3-2024.12.23-4a8e092c0
|
||||
kubeVersion: ">=1.23.0-0"
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 7.4.7-8-cap-2.12.3-2024.12.17-4d75d35f4
|
||||
version: 7.4.7-9-cap-2.12.3-2024.12.23-4a8e092c0
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
sources:
|
||||
|
@ -27,4 +27,4 @@ annotations:
|
|||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||
artifacthub.io/changes: |
|
||||
- kind: changed
|
||||
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
|
||||
description: argo-cd updated to v2.12.3-2024.12.23-4a8e092c0 using sources-server for application version
|
||||
|
|
|
@ -784,6 +784,8 @@ NAME: my-release
|
|||
| eventReporter.serviceAccount.create | bool | `true` | Create a service account for the event reporter |
|
||||
| eventReporter.serviceAccount.labels | object | `{}` | Labels applied to created service account |
|
||||
| eventReporter.serviceAccount.name | string | `"event-reporter"` | Service account name |
|
||||
| eventReporter.sourcesServer.baseURL | string | `"http://sources-server"` | base URL of sources-server |
|
||||
| eventReporter.sourcesServer.enabled | bool | `false` | Use sources-server logic instead of repo-server |
|
||||
| eventReporter.statefulsetAnnotations | object | `{}` | Annotations for the event reporter StatefulSet |
|
||||
| eventReporter.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook |
|
||||
| eventReporter.tolerations | list | `[]` (defaults to global.tolerations) | [Tolerations] for use with node taints |
|
||||
|
|
|
@ -70,6 +70,10 @@ spec:
|
|||
{{- with (concat .Values.global.env .Values.eventReporter.env) }}
|
||||
{{- toYaml . | nindent 10 }}
|
||||
{{- end }}
|
||||
- name: SOURCES_SERVER_ENABLED
|
||||
value: {{ .Values.eventReporter.sourcesServer.enabled | quote }}
|
||||
- name: SOURCES_SERVER_BASE_URL
|
||||
value: {{ .Values.eventReporter.sourcesServer.baseURL | quote }}
|
||||
- name: EVENT_REPORTER_APPLICATION_SERVER
|
||||
value: {{ include "argo-cd.eventReporter.argocd-server-adress" . }}
|
||||
- name: EVENT_REPORTER_REPLICAS
|
||||
|
|
|
@ -3843,6 +3843,13 @@ eventReporter:
|
|||
# topologyKey: topology.kubernetes.io/zone
|
||||
# whenUnsatisfiable: DoNotSchedule
|
||||
|
||||
# Configuration of sources-server using
|
||||
sourcesServer:
|
||||
# -- Use sources-server logic instead of repo-server
|
||||
enabled: false
|
||||
# -- base URL of sources-server
|
||||
baseURL: "http://sources-server"
|
||||
|
||||
serviceAccount:
|
||||
# -- Create a service account for the event reporter
|
||||
create: true
|
||||
|
|
Loading…
Reference in a new issue