File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : v0.0.0
33description : A Helm chart for Codefresh Internal Gateway
44name : internal-gateway
5- version : 0.12.1
5+ version : 0.12.2
66home : https://github.com/codefresh-io/helm-charts
77keywords :
88 - codefresh
Original file line number Diff line number Diff line change 11# internal-gateway
22
3- ![ Version: 0.12.1 ] ( https://img.shields.io/badge/Version-0.12.1 -informational?style=flat-square ) ![ AppVersion: v0.0.0] ( https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square )
3+ ![ Version: 0.12.2 ] ( https://img.shields.io/badge/Version-0.12.2 -informational?style=flat-square ) ![ AppVersion: v0.0.0] ( https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square )
44
55A Helm chart for Codefresh Internal Gateway
66
@@ -33,6 +33,7 @@ A Helm chart for Codefresh Internal Gateway
3333| global.dnsService | string | ` "kube-dns" ` | configures DNS service name |
3434| hpa | object | See below | HPA parameters |
3535| ingress | object | See below | Ingress parameters |
36+ | ipv6 | object | ` {"enabled":true} ` | Enable IPv6 support |
3637| keda.enabled | bool | ` false ` | |
3738| libraryMode | bool | ` false ` | |
3839| nginx.config.accessLogEnabled | bool | ` true ` | Enables NGINX access logs |
Original file line number Diff line number Diff line change 8585
8686 server {
8787 listen 8080;
88+ {{- if .Values.ipv6.enabled } }
8889 listen [::]:8080;
90+ { {- end } }
8991
9092 { {- range $key , $val := $nginxConfig .serverDirectives } }
9193 { { printf " %s %s;" $key $val } }
Original file line number Diff line number Diff line change 22# Added to support usage in Codefresh On-Premise Helm chart
33libraryMode : false
44
5+ # -- Enable IPv6 support
6+ ipv6 :
7+ enabled : true
8+
59# -- Codefresh platform settings
610# List of services endpoints and port
711# @default -- See below
You can’t perform that action at this time.
0 commit comments