Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: ipv6 port number
  • Loading branch information
mikhail-klimko committed Sep 15, 2023
commit 4dd388c1b3a9140bfb97aa68c5943253c7e28959
16 changes: 3 additions & 13 deletions charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.1.34
description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.2.16
version: 0.2.17
home: https://github.com/codefresh-io/gitops-runtime-helm
icon: https://avatars1.githubusercontent.com/u/11412079?v=3
keywords:
Expand All @@ -14,18 +14,8 @@ maintainers:
annotations:
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
artifacthub.io/changes: |
- kind: changed
description: Update `argo-events` to 2.0.5-1-cf-init
- kind: changed
description: Updated `app-proxy` to `1.2411.2`
- kind: changed
description: Update ArgoCD version to v2.8.1-cap-CR-20116-rollout-sync-sha
- kind: changed
description: Update Argo Events version to v1.7.3-cap-CR-19893
- kind: changed
description: Update env-vars helper template
- kind: changed
description: Add ipv6 support in internal-router
- kind: fixed
description: Fix ipv6 port number
dependencies:
- name: argo-cd
repository: https://codefresh-io.github.io/argo-helm
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ data:
default.conf.template: |
server {
listen 8080;
listen [::]:80 default_server;
listen [::]:8080 default_server;
access_log /dev/stdout main;
error_log /dev/stdout;

Expand Down