From 9e2f89a7e4c4e8f8e43b2429017241160697a208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Szcze=C5=9Bniak?= Date: Tue, 15 Nov 2022 17:45:57 +0100 Subject: [PATCH] chore: release 1.2.0 --- charts/azurite/CHANGELOG.md | 4 ++++ charts/azurite/Chart.yaml | 2 +- charts/azurite/templates/ingress.yaml | 6 +++--- charts/azurite/values.yaml | 6 +++--- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/charts/azurite/CHANGELOG.md b/charts/azurite/CHANGELOG.md index 0bd231c..0b7abaa 100644 --- a/charts/azurite/CHANGELOG.md +++ b/charts/azurite/CHANGELOG.md @@ -11,6 +11,10 @@ Entries should be ordered as follows: Entries should include a reference to the pull request that introduced the change. +## 1.3.0 + +- [CHANGE] Change ingress defaults + ## 1.2.0 - [CHANGE] Use `--disableProductStyleUrl` in StatefulSet diff --git a/charts/azurite/Chart.yaml b/charts/azurite/Chart.yaml index 524218e..0910790 100644 --- a/charts/azurite/Chart.yaml +++ b/charts/azurite/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: "v2" name: "azurite" type: application -version: "1.2.0" +version: "1.3.0" appVersion: "3.20.1" description: "A lightweight server clone of Azure Storage that simulates most of the commands supported by it with minimal dependencies" home: "https://github.com/Azure/Azurite" diff --git a/charts/azurite/templates/ingress.yaml b/charts/azurite/templates/ingress.yaml index e9c1d2c..ed2a623 100644 --- a/charts/azurite/templates/ingress.yaml +++ b/charts/azurite/templates/ingress.yaml @@ -17,7 +17,7 @@ metadata: spec: ingressClassName: {{ .Values.ingress.className }} rules: - {{- if .Values.config.blobs.enabled }} + {{- if .Values.config.blobs.enabled and .Values.ingress.host.blobs }} - host: {{ .Values.ingress.host.blobs | quote }} http: paths: @@ -29,7 +29,7 @@ spec: port: name: blobs {{- end }} - {{- if .Values.config.queues.enabled }} + {{- if .Values.config.queues.enabled and .Values.ingress.host.queues }} - host: {{ .Values.ingress.host.queues | quote }} http: paths: @@ -41,7 +41,7 @@ spec: port: name: queues {{- end }} - {{- if .Values.config.tables.enabled }} + {{- if .Values.config.tables.enabled and .Values.ingress.host.tables }} - host: {{ .Values.ingress.host.tables | quote }} http: paths: diff --git a/charts/azurite/values.yaml b/charts/azurite/values.yaml index 759a2e1..b5f58c8 100644 --- a/charts/azurite/values.yaml +++ b/charts/azurite/values.yaml @@ -55,7 +55,7 @@ ingress: labels: {} annotations: {} host: - blobs: "" - queues: "" - tables: "" + blobs: null + queues: null + tables: null className: "public"