File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -237,12 +237,6 @@ Alternative (Kubernetes-native):
237237For Spritz pods, the shared mount is writable. The syncer sidecar uses a filesystem
238238watcher to publish quickly when content changes, with a periodic safety tick.
239239
240- # # Deprecated: Shared Config PVC
241-
242- The shared config PVC approach is sunsetted and is **not** planned for implementation
243- in the near future. Any existing PVC code should be treated as legacy and not enabled
244- for new deployments. Use the object-storage syncer above.
245-
246240# # GCS Uniform Bucket-Level Access (Important)
247241
248242When using GCS buckets with Uniform Bucket-Level Access (UBLA) enabled, rclone must
Original file line number Diff line number Diff line change 1+ {{- if hasKey .Values.operator "homePVC" -}}
2+ {{ fail "operator.homePVC has been removed; use operator.homeSizeLimit and sharedMounts instead" }}
3+ {{- end -}}
4+ {{- if hasKey .Values.operator "sharedConfigPVC" -}}
5+ {{ fail "operator.sharedConfigPVC has been removed; use operator.sharedMounts/api.sharedMounts instead" }}
6+ {{- end -}}
17apiVersion : apps/v1
28kind : Deployment
39metadata :
Original file line number Diff line number Diff line change @@ -87,4 +87,12 @@ expect_failure \
8787 " global.ingress.className must be nginx when authGateway.enabled=true" \
8888 helm template spritz " ${chart_dir} " -f " ${example_values} " --set global.ingress.className=traefik
8989
90+ expect_failure \
91+ " operator.homePVC has been removed; use operator.homeSizeLimit and sharedMounts instead" \
92+ helm template spritz " ${chart_dir} " --set operator.homePVC.enabled=true
93+
94+ expect_failure \
95+ " operator.sharedConfigPVC has been removed; use operator.sharedMounts/api.sharedMounts instead" \
96+ helm template spritz " ${chart_dir} " --set operator.sharedConfigPVC.enabled=true
97+
9098echo " helm checks passed"
You can’t perform that action at this time.
0 commit comments