diff --git a/charts/library/common/Chart.yaml b/charts/library/common/Chart.yaml index 2163b764024..9ab6e4b718f 100644 --- a/charts/library/common/Chart.yaml +++ b/charts/library/common/Chart.yaml @@ -15,4 +15,4 @@ maintainers: name: common sources: null type: library -version: 8.0.3 +version: 8.0.4 diff --git a/charts/library/common/tests/persistentvolumeclaim_test.go b/charts/library/common/tests/persistentvolumeclaim_test.go index 9060d07ec84..5cb79297e2c 100644 --- a/charts/library/common/tests/persistentvolumeclaim_test.go +++ b/charts/library/common/tests/persistentvolumeclaim_test.go @@ -80,7 +80,7 @@ func (suite *PersistenceVolumeClaimTestSuite) TestMetaData() { "app.kubernetes.io/instance": "common-test", "app.kubernetes.io/managed-by": "Helm", "app.kubernetes.io/name": "common-test", - "app.kubernetes.io/version":"latest", + "app.kubernetes.io/version":"1.6.1", "helm.sh/chart": "common-test-3.1.4", } diff --git a/charts/library/common/values.yaml b/charts/library/common/values.yaml index f054928e345..01d92453e57 100644 --- a/charts/library/common/values.yaml +++ b/charts/library/common/values.yaml @@ -592,6 +592,22 @@ persistence: # -- If the `SizeMemoryBackedVolumes` feature gate is enabled, you can # specify a size for memory backed volumes. sizeLimit: # 1Gi + # -- Create an emptyDir volume to share between all containers + # [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#emptydir) + # @default -- See below + varrun: + enabled: true + type: emptyDir + mountPath: /var/run + + # -- Set the medium to "Memory" to mount a tmpfs (RAM-backed filesystem) instead + # of the storage medium that backs the node. + medium: Memory + + # -- If the `SizeMemoryBackedVolumes` feature gate is enabled, you can + # specify a size for memory backed volumes. + sizeLimit: # 1Gi + # -- Example of a hostPath mount # [[ref]]https://kubernetes.io/docs/concepts/storage/volumes/#hostpath)