Skip to content

Commit

Permalink
Prepare for release 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
idanl21 committed Sep 4, 2023
1 parent bb7c866 commit 5666be7
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 24 deletions.
4 changes: 2 additions & 2 deletions charts/opensearch-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: opensearch-cluster
description: A Helm chart for OpenSearch Cluster
type: application
version: 2.2.0
appVersion: 2.2.0
version: 2.4.0
appVersion: 2.4.0
4 changes: 2 additions & 2 deletions charts/opensearch-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.3.0
version: 2.4.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 2.3.0
appVersion: 2.4.0
Original file line number Diff line number Diff line change
Expand Up @@ -1042,16 +1042,6 @@ spec:
additionalVolumes:
items:
properties:
emptyDir:
description: emptyDir to use to populate the volume
type: object
properties:
sizeLimit:
description: Total amount of local storage required for this EmptyDir volume
type: string
medium:
description: hat type of storage medium should back this directory
type: string
configMap:
description: ConfigMap to use to populate the volume
properties:
Expand Down Expand Up @@ -1120,6 +1110,31 @@ spec:
type: boolean
type: object
x-kubernetes-map-type: atomic
emptyDir:
description: EmptyDir to use to populate the volume
properties:
medium:
description: 'medium represents what type of storage
medium should back this directory. The default is
"" which means to use the node''s default medium.
Must be an empty string (default) or Memory. More
info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir'
type: string
sizeLimit:
anyOf:
- type: integer
- type: string
description: 'sizeLimit is the total amount of local
storage required for this EmptyDir volume. The size
limit is also applicable for memory medium. The maximum
usage on memory medium EmptyDir would be the minimum
value between the SizeLimit specified here and the
sum of memory limits of all containers in a pod. The
default is nil which means that the limit is undefined.
More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir'
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
name:
description: Name to use for the volume. Required.
type: string
Expand Down Expand Up @@ -2737,16 +2752,6 @@ spec:
description: Additional volumes to mount to all pods in the cluster
items:
properties:
emptyDir:
description: emptyDir to use to populate the volume
type: object
properties:
sizeLimit:
description: Total amount of local storage required for this EmptyDir volume
type: string
medium:
description: hat type of storage medium should back this directory
type: string
configMap:
description: ConfigMap to use to populate the volume
properties:
Expand Down Expand Up @@ -2815,6 +2820,31 @@ spec:
type: boolean
type: object
x-kubernetes-map-type: atomic
emptyDir:
description: EmptyDir to use to populate the volume
properties:
medium:
description: 'medium represents what type of storage
medium should back this directory. The default is
"" which means to use the node''s default medium.
Must be an empty string (default) or Memory. More
info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir'
type: string
sizeLimit:
anyOf:
- type: integer
- type: string
description: 'sizeLimit is the total amount of local
storage required for this EmptyDir volume. The size
limit is also applicable for memory medium. The maximum
usage on memory medium EmptyDir would be the minimum
value between the SizeLimit specified here and the
sum of memory limits of all containers in a pod. The
default is nil which means that the limit is undefined.
More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir'
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
x-kubernetes-int-or-string: true
type: object
name:
description: Name to use for the volume. Required.
type: string
Expand Down

0 comments on commit 5666be7

Please sign in to comment.