Skip to content

Commit

Permalink
chore: release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viters committed Nov 15, 2022
1 parent e99ec25 commit 9e2f89a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions charts/azurite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/azurite/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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"
6 changes: 3 additions & 3 deletions charts/azurite/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions charts/azurite/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ingress:
labels: {}
annotations: {}
host:
blobs: ""
queues: ""
tables: ""
blobs: null
queues: null
tables: null
className: "public"

0 comments on commit 9e2f89a

Please sign in to comment.