feat: event-reporter config for sources-server
This commit is contained in:
parent
333b9c76a3
commit
ae4fda795d
2 changed files with 11 additions and 0 deletions
|
@ -70,6 +70,10 @@ spec:
|
||||||
{{- with (concat .Values.global.env .Values.eventReporter.env) }}
|
{{- with (concat .Values.global.env .Values.eventReporter.env) }}
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
{{- end }}
|
{{- 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
|
- name: EVENT_REPORTER_APPLICATION_SERVER
|
||||||
value: {{ include "argo-cd.eventReporter.argocd-server-adress" . }}
|
value: {{ include "argo-cd.eventReporter.argocd-server-adress" . }}
|
||||||
- name: EVENT_REPORTER_REPLICAS
|
- name: EVENT_REPORTER_REPLICAS
|
||||||
|
|
|
@ -3843,6 +3843,13 @@ eventReporter:
|
||||||
# topologyKey: topology.kubernetes.io/zone
|
# topologyKey: topology.kubernetes.io/zone
|
||||||
# whenUnsatisfiable: DoNotSchedule
|
# 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:
|
serviceAccount:
|
||||||
# -- Create a service account for the event reporter
|
# -- Create a service account for the event reporter
|
||||||
create: true
|
create: true
|
||||||
|
|
Loading…
Reference in a new issue