Skip to content

Commit

Permalink
release 23.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adwk67 committed Apr 17, 2023
1 parent 97e14e5 commit 6c1dbcd
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 31 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [23.4.0] - 2023-04-17

### Added

- Deploy default and support custom affinities ([#319]).
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions deploy/helm/hdfs-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: hdfs-operator
version: "0.0.0-dev"
appVersion: "0.0.0-dev"
version: "23.4.0"
appVersion: "23.4.0"
description: The Stackable Operator for Apache HDFS
home: https://github.com/stackabletech/hdfs-operator
maintainers:
Expand Down
3 changes: 2 additions & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: home
version: "nightly"
version: "23.4"
prerelease: false
20 changes: 10 additions & 10 deletions docs/modules/hdfs/examples/getting_started/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ cd "$(dirname "$0")"

case "$1" in
"helm")
echo "Adding 'stackable-dev' Helm Chart repository"
echo "Adding 'stackable-stable' Helm Chart repository"
# tag::helm-add-repo[]
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
# end::helm-add-repo[]
echo "Updating Helm repo"
helm repo update
echo "Installing Operators with Helm"
# tag::helm-install-operators[]
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev
helm install --wait hdfs-operator stackable-dev/hdfs-operator --version 0.0.0-dev
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 23.4.0
helm install --wait hdfs-operator stackable-stable/hdfs-operator --version 23.4.0
helm install --wait commons-operator stackable-stable/commons-operator --version 23.4.0
helm install --wait secret-operator stackable-stable/secret-operator --version 23.4.0
# end::helm-install-operators[]
;;
"stackablectl")
echo "installing Operators with stackablectl"
# tag::stackablectl-install-operators[]
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
zookeeper=0.0.0-dev \
hdfs=0.0.0-dev
commons=23.4.0 \
secret=23.4.0 \
zookeeper=23.4.0 \
hdfs=23.4.0
# end::stackablectl-install-operators[]
;;
*)
Expand Down
12 changes: 6 additions & 6 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
helm:
repo_name: stackable-dev
repo_url: https://repo.stackable.tech/repository/helm-dev/
repo_name: stackable-stable
repo_url: https://repo.stackable.tech/repository/helm-stable/
versions:
commons: 0.0.0-dev
secret: 0.0.0-dev
zookeeper: 0.0.0-dev
hdfs: 0.0.0-dev
commons: 23.4.0
secret: 23.4.0
zookeeper: 23.4.0
hdfs: 23.4.0
2 changes: 1 addition & 1 deletion rust/crd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-crd"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.0.0-dev"
version = "23.4.0"
publish = false

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-operator-binary"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.0.0-dev"
version = "23.4.0"
build = "build.rs"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion rust/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "OSL-3.0"
name = "stackable-hdfs-operator"
repository = "https://github.com/stackabletech/hdfs-operator"
version = "0.0.0-dev"
version = "23.4.0"
publish = false

[dependencies]
Expand Down
12 changes: 6 additions & 6 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
dimensions:
- name: hadoop
values:
- 3.2.2-stackable23.4.0-rc2
- 3.3.3-stackable23.4.0-rc2
- 3.3.4-stackable23.4.0-rc2
- 3.2.2-stackable23.4.0
- 3.3.3-stackable23.4.0
- 3.3.4-stackable23.4.0
- name: hadoop-latest
values:
- 3.3.4-stackable23.4.0-rc2
- 3.3.4-stackable23.4.0
- name: zookeeper
values:
- 3.8.0-stackable23.4.0-rc2
- 3.8.0-stackable23.4.0
- name: zookeeper-latest
values:
- 3.8.0-stackable23.4.0-rc2
- 3.8.0-stackable23.4.0
- name: number-of-datanodes
values:
- "1"
Expand Down

0 comments on commit 6c1dbcd

Please sign in to comment.