From fcafa79c5777b0ef19d28527d2fc498eae7a22f3 Mon Sep 17 00:00:00 2001 From: shashi ranjan Date: Tue, 27 Mar 2018 10:58:03 -0700 Subject: [PATCH] Kong v0.13.0 support (#4443) --- stable/kong/Chart.yaml | 4 ++-- stable/kong/templates/deployment.yaml | 16 ++++------------ stable/kong/values.yaml | 2 +- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/stable/kong/Chart.yaml b/stable/kong/Chart.yaml index 13225c3b13..bd1ce3e57b 100644 --- a/stable/kong/Chart.yaml +++ b/stable/kong/Chart.yaml @@ -10,5 +10,5 @@ maintainers: name: kong sources: - https://github.com/Kong/kong -version: 0.2.3 -appVersion: 0.12.3 +version: 0.2.4 +appVersion: 0.13.0 diff --git a/stable/kong/templates/deployment.yaml b/stable/kong/templates/deployment.yaml index 8bf7c312fd..f3adfe945f 100644 --- a/stable/kong/templates/deployment.yaml +++ b/stable/kong/templates/deployment.yaml @@ -29,26 +29,18 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: {{- if .Values.admin.useTLS }} - - name: KONG_ADMIN_LISTEN_SSL - value: 0.0.0.0:{{ .Values.admin.containerPort }} - - name: KONG_ADMIN_SSL - value: "on" + - name: KONG_ADMIN_LISTEN + value: "0.0.0.0:{{ .Values.admin.containerPort }} ssl" {{- else }} - name: KONG_ADMIN_LISTEN value: 0.0.0.0:{{ .Values.admin.containerPort }} - - name: KONG_ADMIN_SSL - value: "off" {{- end }} {{- if .Values.proxy.useTLS }} - - name: KONG_PROXY_LISTEN_SSL - value: 0.0.0.0:{{ .Values.proxy.containerPort }} - - name: KONG_SSL - value: "on" + - name: KONG_PROXY_LISTEN + value: "0.0.0.0:{{ .Values.proxy.containerPort }} ssl" {{- else }} - name: KONG_PROXY_LISTEN value: 0.0.0.0:{{ .Values.proxy.containerPort }} - - name: KONG_SSL - value: "off" {{- end }} - name: KONG_NGINX_DAEMON value: "off" diff --git a/stable/kong/values.yaml b/stable/kong/values.yaml index d83541ccbe..22164a9f40 100644 --- a/stable/kong/values.yaml +++ b/stable/kong/values.yaml @@ -3,7 +3,7 @@ image: repository: kong - tag: 0.12.3 + tag: 0.13.0 pullPolicy: IfNotPresent # Specify Kong admin and proxy services configurations