Skip to content

Commit

Permalink
chore: release risingwave-operator v0.8.3 (#129)
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: arkbriar <[email protected]>
  • Loading branch information
risingwave-ci and arkbriar authored Nov 1, 2024
1 parent 4e9a56d commit ad7e1ef
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/risingwave-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ 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: 0.1.21
version: 0.1.22

# 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: "v0.8.2"
appVersion: "v0.8.3"

home: https://www.risingwave.com
icon: https://avatars.githubusercontent.com/u/77175557?s=48&v=4
Expand Down
34 changes: 33 additions & 1 deletion charts/risingwave-operator/crds/risingwave-operator.crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30303,7 +30303,7 @@ spec:
description: |-
Flag to indicate if OpenKruise should be enabled for components.
If enabled, CloneSets will be used for meta/frontend/compactor nodes
and Advanced StateFulSets will be used for compute nodes.
and Advanced StatefulSets will be used for compute nodes.
type: boolean
enableStandaloneMode:
default: false
Expand Down Expand Up @@ -30510,6 +30510,38 @@ spec:
- path
type: object
type: object
secretStore:
description: SecretStore is the configuration of the secret store.
properties:
privateKey:
description: PrivateKey is the private key used to encrypt and
decrypt the secrets.
properties:
secretRef:
description: |-
SecretRef is a reference to a secret that contains the private key. If this is set, Value must be nil.
Note that the value in the secret must be a 128-bit key encoded in hex.
properties:
key:
description: Key is the key in the secret that contains
the private key.
type: string
name:
description: Name is the name of the secret.
type: string
required:
- key
- name
type: object
value:
description: |-
Value is the private key. It must be a 128-bit key encoded in hex. If this is set, SecretRef must be nil.
When the feature gate RandomSecretStorePrivateKey is enabled and neither is set, the private key will be
generated randomly.
pattern: ^[0-9a-f]{32}$
type: string
type: object
type: object
standaloneMode:
default: 0
description: |-
Expand Down
2 changes: 1 addition & 1 deletion charts/risingwave-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ serviceAccount:
image:
registry: docker.risingwave.com
repository: risingwavelabs/risingwave-operator
tag: "v0.8.2"
tag: "v0.8.3"
digest: ""
## @param image.pullPolicy Image pull policy
## Specify a imagePullPolicy
Expand Down

0 comments on commit ad7e1ef

Please sign in to comment.