Skip to content

Commit f049aae

Browse files
authored
[XENOPS-1229] disable pvc creation for shared-file-system in case of community edition (#168)
* [XENOPS-1229] remove shared-file-store pvc * [XENOPS-1229] remove shared-file-store pvc * [XENOPS-1229] remove shared-file-store pvc
1 parent 4f8f9b2 commit f049aae

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
chronology things are added/fixed/changed and - where possible - links to the PRs involved.
77

88
### Changes
9+
[v0.8.4]
10+
* do not create a pvc for shared-file-store when enterprise=false
911

1012
[v0.8.3]
1113
* fixed a bug that caused the ingress annotations to miss necessary quotes
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{{- $namespace := .Release.Namespace -}}
2+
{{- if .Values.general.enterprise }}
23
{{- with .Values.persistentStorage.sharedFileStore }}
3-
{{- if .enabled}}
4+
{{- if .enabled }}
45
{{- $name := "shared-file-store" -}}
56
{{- $storageClassName := .storageClassName -}}
67
{{- $storage := .storage -}}
78
{{- $efsVolumeHandle := .efs.volumeHandle -}}
89
{{- include "hepers.volumeHelper" (list $namespace $name $storageClassName $storage $efsVolumeHandle) }}
910
{{- end }}
11+
{{- end }}
1012
{{- end }}

0 commit comments

Comments
 (0)