File tree Expand file tree Collapse file tree 8 files changed +11
-9
lines changed
templates/_components/event-reporters Expand file tree Collapse file tree 8 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
appVersion : 0.1.30
3
3
description : A Helm chart for Codefresh gitops runtime
4
4
name : gitops-runtime
5
- version : 0.2.13-alpha
5
+ version : 0.2.13-alpha.1
6
6
home : https://github.com/codefresh-io/gitops-runtime-helm
7
7
icon : https://avatars1.githubusercontent.com/u/11412079?v=3
8
8
keywords :
@@ -19,6 +19,8 @@ annotations:
19
19
description: csv generation for private registry utility
20
20
- kind: added
21
21
description: pdb for eventbus
22
+ - kind: fixed
23
+ description: fix eventbusname
22
24
dependencies :
23
25
- name : argo-cd
24
26
repository : https://codefresh-io.github.io/argo-helm
Original file line number Diff line number Diff line change 1
1
## Codefresh gitops runtime
2
- ![ Version: 0.2.13-alpha] ( https://img.shields.io/badge/Version-0.2.13--alpha-informational?style=flat-square ) ![ AppVersion: 0.1.30] ( https://img.shields.io/badge/AppVersion-0.1.30-informational?style=flat-square )
2
+ ![ Version: 0.2.13-alpha.1 ] ( https://img.shields.io/badge/Version-0.2.13--alpha.1 -informational?style=flat-square ) ![ AppVersion: 0.1.30] ( https://img.shields.io/badge/AppVersion-0.1.30-informational?style=flat-square )
3
3
4
4
## Codefresh official documentation:
5
5
Prior to running the installation please see the official documentation at: https://codefresh.io/docs/docs/installation/gitops/hybrid-gitops-helm-installation/
@@ -15,7 +15,7 @@ We have created a helper utility to resolve this issue:
15
15
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
16
16
17
17
```
18
- docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.13-alpha <local_registry>
18
+ docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.13-alpha.1 <local_registry>
19
19
```
20
20
` output_dir ` - is a local directory where the utility will output files. <br >
21
21
` local_registry ` - is your local registry where you want to mirror the images to
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
7
7
name : events-reporter
8
8
spec :
9
9
replicas : {{ .Values.events.eventSource.replicas }}
10
- eventBusName : {{ .Values.global.runtime.eventBusName }}
10
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
11
11
generic :
12
12
events :
13
13
authSecret :
Original file line number Diff line number Diff line change 11
11
- name : events
12
12
eventSourceName : events-reporter
13
13
eventName : events
14
- eventBusName : {{ .Values.global.runtime.eventBusName }}
14
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
15
15
template :
16
16
serviceAccountName : {{ include "event-reporters.events-reporter.serviceAccountName" .}}
17
17
container :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
7
7
{{- include "event-reporters.rollout-reporter.labels" . | nindent 4}}
8
8
spec :
9
9
replicas : {{ .Values.rollout.eventSource.replicas }}
10
- eventBusName : {{ .Values.global.runtime.eventBusName }}
10
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
11
11
resource :
12
12
analysisruns :
13
13
eventTypes :
Original file line number Diff line number Diff line change 17
17
- name : analysisruns
18
18
eventSourceName : rollout-reporter
19
19
eventName : analysisruns
20
- eventBusName : {{ .Values.global.runtime.eventBusName }}
20
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
21
21
template :
22
22
serviceAccountName : {{ include "event-reporters.rollout-reporter.serviceAccountName" .}}
23
23
container :
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ metadata:
7
7
{{- include "event-reporters.workflow-reporter.labels" . | nindent 4 }}
8
8
spec :
9
9
replicas : {{ .Values.workflow.eventSource.replicas }}
10
- eventBusName : {{ .Values.global.runtime.eventBusName }}
10
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
11
11
resource :
12
12
workflows :
13
13
eventTypes :
Original file line number Diff line number Diff line change 11
11
- eventName : workflows
12
12
eventSourceName : workflow-reporter
13
13
name : workflows
14
- eventBusName : {{ .Values.global.runtime.eventBusName }}
14
+ eventBusName : {{ default "codefresh-eventbus" .Values.global.runtime.eventBus.name }}
15
15
template :
16
16
serviceAccountName : {{ include "event-reporters.workflow-reporter.serviceAccountName" .}}
17
17
container :
You can’t perform that action at this time.
0 commit comments