Skip to content

Commit bed9b46

Browse files
committed
release 23.11.0
1 parent 6f9a527 commit bed9b46

File tree

9 files changed

+35
-32
lines changed

9 files changed

+35
-32
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [23.11.0] - 2023-11-24
8+
79
### Added
810

911
- Default stackableVersion to operator version. It is recommended to remove `spec.image.stackableVersion` from your custom resources ([#493]).

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["rust/crd", "rust/operator-binary"]
33

44
[workspace.package]
5-
version = "0.0.0-dev"
5+
version = "23.11.0"
66
authors = ["Stackable GmbH <[email protected]>"]
77
license = "OSL-3.0"
88
edition = "2021"

deploy/helm/nifi-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: nifi-operator
4-
version: "0.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "23.11.0"
5+
appVersion: "23.11.0"
66
description: The Stackable Operator for Apache NiFi
77
home: https://github.com/stackabletech/nifi-operator
88
maintainers:

docs/antora.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
name: home
3-
version: "nightly"
3+
version: "23.11"
4+
prerelease: false

docs/modules/nifi/examples/getting_started/getting_started.sh

+12-12
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@ cd "$(dirname "$0")"
2121

2222
case "$1" in
2323
"helm")
24-
echo "Adding 'stackable-dev' Helm Chart repository"
24+
echo "Adding 'stackable-stable' Helm Chart repository"
2525
# tag::helm-add-repo[]
26-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
26+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2727
# end::helm-add-repo[]
2828
echo "Updating Helm repo"
2929
helm repo update
3030

3131
echo "Installing Operators with Helm"
3232
# tag::helm-install-operators[]
33-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
34-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
35-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
36-
helm install --wait zookeeper-operator stackable-dev/zookeeper-operator --version 0.0.0-dev
37-
helm install --wait nifi-operator stackable-dev/nifi-operator --version 0.0.0-dev
33+
helm install --wait commons-operator stackable-stable/commons-operator --version 23.11.0
34+
helm install --wait secret-operator stackable-stable/secret-operator --version 23.11.0
35+
helm install --wait listener-operator stackable-stable/listener-operator --version 23.11.0
36+
helm install --wait zookeeper-operator stackable-stable/zookeeper-operator --version 23.11.0
37+
helm install --wait nifi-operator stackable-stable/nifi-operator --version 23.11.0
3838
# end::helm-install-operators[]
3939
;;
4040
"stackablectl")
4141
echo "installing Operators with stackablectl"
4242
# tag::stackablectl-install-operators[]
4343
stackablectl operator install \
44-
commons=0.0.0-dev \
45-
secret=0.0.0-dev \
46-
listener=0.0.0-dev \
47-
zookeeper=0.0.0-dev \
48-
nifi=0.0.0-dev
44+
commons=23.11.0 \
45+
secret=23.11.0 \
46+
listener=23.11.0 \
47+
zookeeper=23.11.0 \
48+
nifi=23.11.0
4949
# end::stackablectl-install-operators[]
5050
;;
5151
*)
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tag::stackablectl-install-operators-output[]
2-
[INFO ] Installing commons operator in version 0.0.0-dev
3-
[INFO ] Installing secret operator in version 0.0.0-dev
4-
[INFO ] Installing listener operator in version 0.0.0-dev
5-
[INFO ] Installing zookeeper operator in version 0.0.0-dev
6-
[INFO ] Installing nifi operator in version 0.0.0-dev
2+
[INFO ] Installing commons operator in version 23.11.0
3+
[INFO ] Installing secret operator in version 23.11.0
4+
[INFO ] Installing listener operator in version 23.11.0
5+
[INFO ] Installing zookeeper operator in version 23.11.0
6+
[INFO ] Installing nifi operator in version 23.11.0
77
# end::stackablectl-install-operators-output[]

docs/modules/nifi/pages/usage_guide/security.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
[#authentication-ldap]
5656
=== LDAP
5757

58-
NiFi supports xref:nightly@home:concepts:authentication.adoc[authentication] of users against an LDAP server. This requires setting up an xref:nightly@home:concepts:authentication.adoc#authenticationclass[AuthenticationClass] for the LDAP server.
58+
NiFi supports xref:home:concepts:authentication.adoc[authentication] of users against an LDAP server. This requires setting up an xref:home:concepts:authentication.adoc#authenticationclass[AuthenticationClass] for the LDAP server.
5959
The AuthenticationClass is then referenced in the NifiCluster resource as follows:
6060

6161
[source,yaml]
@@ -72,7 +72,7 @@ spec:
7272

7373
<1> The reference to an AuthenticationClass called `ldap`
7474

75-
You can follow the xref:nightly@home:tutorials:authentication_with_openldap.adoc[] tutorial to learn how to set up an AuthenticationClass for an LDAP server, as well as consulting the xref:nightly@home:reference:authenticationclass.adoc[] reference.
75+
You can follow the xref:home:tutorials:authentication_with_openldap.adoc[] tutorial to learn how to set up an AuthenticationClass for an LDAP server, as well as consulting the xref:home:reference:authenticationclass.adoc[] reference.
7676

7777
== Authorization
7878

docs/templating_vars.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
helm:
3-
repo_name: stackable-dev
4-
repo_url: https://repo.stackable.tech/repository/helm-dev/
3+
repo_name: stackable-stable
4+
repo_url: https://repo.stackable.tech/repository/helm-stable/
55
versions:
6-
commons: 0.0.0-dev
7-
secret: 0.0.0-dev
8-
listener: 0.0.0-dev
9-
zookeeper: 0.0.0-dev
10-
nifi: 0.0.0-dev
6+
commons: 23.11.0
7+
secret: 23.11.0
8+
listener: 23.11.0
9+
zookeeper: 23.11.0
10+
nifi: 23.11.0

0 commit comments

Comments
 (0)