Skip to content

Commit ccad397

Browse files
Release 0.2.17 (#75)
Urgent fix - internal router
1 parent 449781c commit ccad397

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.34
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.2.16
5+
version: 0.2.17
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
88
keywords:
@@ -14,18 +14,8 @@ maintainers:
1414
annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |
17-
- kind: changed
18-
description: Update `argo-events` to 2.0.5-1-cf-init
19-
- kind: changed
20-
description: Updated `app-proxy` to `1.2411.2`
21-
- kind: changed
22-
description: Update ArgoCD version to v2.8.1-cap-CR-20116-rollout-sync-sha
23-
- kind: changed
24-
description: Update Argo Events version to v1.7.3-cap-CR-19893
25-
- kind: changed
26-
description: Update env-vars helper template
27-
- kind: changed
28-
description: Add ipv6 support in internal-router
17+
- kind: fixed
18+
description: Fix IPv6 port number in internal-router config
2919
dependencies:
3020
- name: argo-cd
3121
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.2.16](https://img.shields.io/badge/Version-0.2.16-informational?style=flat-square) ![AppVersion: 0.1.34](https://img.shields.io/badge/AppVersion-0.1.34-informational?style=flat-square)
2+
![Version: 0.2.17](https://img.shields.io/badge/Version-0.2.17-informational?style=flat-square) ![AppVersion: 0.1.34](https://img.shields.io/badge/AppVersion-0.1.34-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.16 <local_registry>
18+
docker run -v <output_dir>:/output quay.io/codefresh/gitops-runtime-private-registry-utils:0.2.17 <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

charts/gitops-runtime/templates/_components/internal-router/_configmap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data:
77
default.conf.template: |
88
server {
99
listen 8080;
10-
listen [::]:80 default_server;
10+
listen [::]:8080 default_server;
1111
access_log /dev/stdout main;
1212
error_log /dev/stdout;
1313

0 commit comments

Comments
 (0)