From 68c5f9598d189c387da67f1f2e1ea2b6e2b677fc Mon Sep 17 00:00:00 2001 From: Neil MacDougall Date: Wed, 15 Apr 2020 13:36:30 +0100 Subject: [PATCH 1/2] Update 3.1.0 release notes --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f4e0a0528..056b9f53aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ This release contains a number of fixes and improvements: - Disable Jetstream API logging via Env Var [\#4130](https://github.com/cloudfoundry/stratos/issues/4130) - Improve UI element sizing and presentation on desktop [\#4129](https://github.com/cloudfoundry/stratos/pull/4129) - Allow org managers to add users outside of org [\#4103](https://github.com/cloudfoundry/stratos/issues/4103) +- Allow Endpoint Name to be edited [\#3640](https://github.com/cloudfoundry/stratos/issues/3640) **Fixes:** From c6df2d40f082d6182830939ed373e8c99a0958fe Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Wed, 15 Apr 2020 14:56:09 +0100 Subject: [PATCH 2/2] Fix quote issue in helm template (#4224) --- deploy/kubernetes/console/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/kubernetes/console/templates/deployment.yaml b/deploy/kubernetes/console/templates/deployment.yaml index 36b521a8d1..84cbffb744 100644 --- a/deploy/kubernetes/console/templates/deployment.yaml +++ b/deploy/kubernetes/console/templates/deployment.yaml @@ -258,7 +258,7 @@ spec: {{- if .Values.console.ui }} {{- if .Values.console.ui.listMaxSize }} - name: UI_LIST_MAX_SIZE - value: {{.Values.console.ui.listMaxSize}} + value: {{ .Values.console.ui.listMaxSize | quote }} {{- end }} - name: UI_LIST_ALLOW_LOAD_MAXED value: {{ default "false" .Values.console.ui.listAllowLoadMaxed | quote }}