Skip to content

Commit

Permalink
chore: release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
viters committed Nov 15, 2022
1 parent 9e2f89a commit 43b5111
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 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.1

- [BUGFIX] Fix ingress conditions

## 1.3.0

- [CHANGE] Change ingress defaults
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.3.0"
version: "1.3.1"
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 and .Values.ingress.host.blobs }}
{{- if and (.Values.config.blobs.enabled) (.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 and .Values.ingress.host.queues }}
{{- if and (.Values.config.queues.enabled) (.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 and .Values.ingress.host.tables }}
{{- if and (.Values.config.tables.enabled) (.Values.ingress.host.tables) }}
- host: {{ .Values.ingress.host.tables | quote }}
http:
paths:
Expand Down

0 comments on commit 43b5111

Please sign in to comment.