Skip to content

Commit 2296662

Browse files
Merge pull request #52 from codefresh-io/new-release
Update app-proxy to 1.2268.0
2 parents 26d0fa0 + d2ed0ad commit 2296662

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

charts/gitops-runtime/Chart.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: 0.1.29
2+
appVersion: 0.1.30
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.2.8-alpha.1
5+
version: 0.2.9-alpha
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -15,8 +15,10 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/prerelease: "true"
1717
artifacthub.io/changes: |
18-
- kind: fixed
19-
description: Fix image list generation in private registry helper utility
18+
- kind: changed
19+
description: Updated `app-proxy` to `1.2268.0`
20+
- kind: changed
21+
description: updated default value of workflow-reporter SA to "codefresh-sa"
2022
dependencies:
2123
- name: argo-cd
2224
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.2.8-alpha.1](https://img.shields.io/badge/Version-0.2.8--alpha.1-informational?style=flat-square) ![AppVersion: 0.1.29](https://img.shields.io/badge/AppVersion-0.1.29-informational?style=flat-square)
2+
![Version: 0.2.9-alpha](https://img.shields.io/badge/Version-0.2.9--alpha-informational?style=flat-square) ![AppVersion: 0.1.30](https://img.shields.io/badge/AppVersion-0.1.30-informational?style=flat-square)
33

44
## Codefresh official documentation:
55
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:
1515
The utility is packaged in a container image. Below are instructions on executing the utility using Docker:
1616

1717
```
18-
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.8-alpha.1 <local_registry>
18+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.9-alpha <local_registry>
1919
```
2020
`output_dir` - is a local directory where the utility will output files. <br>
2121
`local_registry` - is your local registry where you want to mirror the images to
@@ -57,14 +57,14 @@ The utility will output 4 files into the folder:
5757
| app-proxy.image-enrichment.serviceAccount.name | string | `"codefresh-image-enrichment-sa"` | Name of the service account to create or the name of the existing one to use |
5858
| app-proxy.image.pullPolicy | string | `"IfNotPresent"` | |
5959
| app-proxy.image.repository | string | `"quay.io/codefresh/cap-app-proxy"` | |
60-
| app-proxy.image.tag | string | `"1.2257.0"` | |
60+
| app-proxy.image.tag | string | `"1.2268.0"` | |
6161
| app-proxy.imagePullSecrets | list | `[]` | |
6262
| app-proxy.initContainer.command[0] | string | `"./init.sh"` | |
6363
| app-proxy.initContainer.env | object | `{}` | |
6464
| app-proxy.initContainer.extraVolumeMounts | list | `[]` | Extra volume mounts for init container |
6565
| app-proxy.initContainer.image.pullPolicy | string | `"IfNotPresent"` | |
6666
| app-proxy.initContainer.image.repository | string | `"quay.io/codefresh/cap-app-proxy-init"` | |
67-
| app-proxy.initContainer.image.tag | string | `"1.2257.0"` | |
67+
| app-proxy.initContainer.image.tag | string | `"1.2268.0"` | |
6868
| app-proxy.initContainer.resources.limits.cpu | string | `"1"` | |
6969
| app-proxy.initContainer.resources.limits.memory | string | `"512Mi"` | |
7070
| app-proxy.initContainer.resources.requests.cpu | string | `"0.2"` | |

charts/gitops-runtime/templates/_components/event-reporters/_helpers.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Create the name of the service account to use
140140
*/}}
141141
{{- define "event-reporters.workflow-reporter.serviceAccountName" -}}
142142
{{- if .Values.workflow.serviceAccount.create }}
143-
{{- default (include "event-reporters.workflow-reporter.fullname" .) .Values.workflow.serviceAccount.name }}
143+
{{- default "codefresh-sa" .Values.workflow.serviceAccount.name }}
144144
{{- else }}
145145
{{- default "default" .Values.workflow.serviceAccount.name }}
146146
{{- end }}

charts/gitops-runtime/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -305,15 +305,15 @@ app-proxy:
305305

306306
image:
307307
repository: quay.io/codefresh/cap-app-proxy
308-
tag: 1.2257.0
308+
tag: 1.2268.0
309309
pullPolicy: IfNotPresent
310310
# -- Extra volume mounts for main container
311311
extraVolumeMounts: []
312312

313313
initContainer:
314314
image:
315315
repository: quay.io/codefresh/cap-app-proxy-init
316-
tag: 1.2257.0
316+
tag: 1.2268.0
317317
pullPolicy: IfNotPresent
318318
command:
319319
- ./init.sh

0 commit comments

Comments
 (0)