Skip to content

Commit 89685b1

Browse files
authored
Merge pull request #132 from LibreTexts/master
0.5.3 release
2 parents 98da13a + a91190e commit 89685b1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

docs/user_guide/change_log.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change Log
22
==========
33

4+
0.5.3
5+
-----
6+
7+
ngshare:
8+
9+
- Fix not having a `deployment.strategy` causing helm chart rendering to fail.
10+
411
0.5.2
512
-----
613

helmchart/ngshare/templates/deployment.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ spec:
99
selector:
1010
matchLabels:
1111
{{- include "ngshare.selectorLabels" . | nindent 6 }}
12-
strategy: {{ .Values.deployment.strategy }}
12+
{{- if .Values.deployment.strategy }}
13+
strategy:
14+
{{- .Values.deployment.strategy | toYaml | trimSuffix "\n" | nindent 4 }}
15+
{{- end }}
1316
template:
1417
metadata:
1518
labels:

ngshare/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.5.2'
1+
__version__ = '0.5.3'

0 commit comments

Comments
 (0)