Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion charts/internal-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.0.0
description: A Helm chart for Codefresh Internal Gateway
name: internal-gateway
version: 0.12.1
version: 0.12.2
home: https://github.com/codefresh-io/helm-charts
keywords:
- codefresh
Expand Down
3 changes: 2 additions & 1 deletion charts/internal-gateway/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# internal-gateway

![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)
![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)

A Helm chart for Codefresh Internal Gateway

Expand Down Expand Up @@ -33,6 +33,7 @@ A Helm chart for Codefresh Internal Gateway
| global.dnsService | string | `"kube-dns"` | configures DNS service name |
| hpa | object | See below | HPA parameters |
| ingress | object | See below | Ingress parameters |
| ipv6 | object | `{"enabled":true}` | Enable IPv6 support |
| keda.enabled | bool | `false` | |
| libraryMode | bool | `false` | |
| nginx.config.accessLogEnabled | bool | `true` | Enables NGINX access logs |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ data:

server {
listen 8080;
{{- if .Values.ipv6.enabled }}
listen [::]:8080;
{{- end }}

{{- range $key, $val := $nginxConfig.serverDirectives }}
{{ printf "%s %s;" $key $val }}
Expand Down
4 changes: 4 additions & 0 deletions charts/internal-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# Added to support usage in Codefresh On-Premise Helm chart
libraryMode: false

# -- Enable IPv6 support
ipv6:
enabled: true

# -- Codefresh platform settings
# List of services endpoints and port
# @default -- See below
Expand Down
Loading