Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Adapted versions to 1.18.0 #360

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ All notable changes to this project will be documented in this file.

- Support for in-place Nifi cluster upgrades ([#323])
- Added default resource requests (memory and cpu) for Nifi pods ([#353])
- Added support for NiFi version 1.18.0 ([#360])

[#323]: https://github.com/stackabletech/nifi-operator/pull/323
[#353]: https://github.com/stackabletech/nifi-operator/pull/353
[#360]: https://github.com/stackabletech/nifi-operator/pull/360

## [0.7.0] - 2022-09-06

Expand Down
7 changes: 7 additions & 0 deletions docs/modules/ROOT/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,11 @@
// Stackable Platform documentation.

- 1.15.0
- 1.15.1
- 1.15.2
- 1.15.3
- 1.16.0
- 1.16.1
- 1.16.2
- 1.16.3
- 1.18.0
4 changes: 2 additions & 2 deletions docs/modules/getting_started/examples/code/getting-started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
EOF
# end::install-zookeeper[]

echo "Crate a ZNode"
echo "Create a ZNode"
# tag::install-znode[]
kubectl apply -f - <<EOF
---
Expand Down Expand Up @@ -108,7 +108,7 @@ kind: NifiCluster
metadata:
name: simple-nifi
spec:
version: 1.16.3-stackable0.1.0
version: 1.18.0-stackable0.1.0
zookeeperConfigMapName: simple-nifi-znode
config:
authentication:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ spec:
EOF
# end::install-zookeeper[]

echo "Crate a ZNode"
echo "Create a ZNode"
# tag::install-znode[]
kubectl apply -f - <<EOF
---
Expand Down Expand Up @@ -108,7 +108,7 @@ kind: NifiCluster
metadata:
name: simple-nifi
spec:
version: 1.16.3-stackable0.1.0
version: 1.18.0-stackable0.1.0
zookeeperConfigMapName: simple-nifi-znode
config:
authentication:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-nifi-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ kind: NifiCluster
metadata:
name: simple-nifi
spec:
version: 1.15.0-stackable0.1.0
version: 1.18.0-stackable0.1.0
zookeeperConfigMapName: simple-nifi-znode
config:
authentication:
Expand Down
3 changes: 2 additions & 1 deletion tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ dimensions:
values:
- 1.15.0-stackable0.4.0
- 1.16.3-stackable0.1.0
- 1.18.0-stackable0.1.0
- name: nifi_old
values:
- 1.15.0-stackable0.4.0
- 1.16.0-stackable0.1.0
- name: nifi_new
values:
- 1.16.3-stackable0.1.0
- 1.18.0-stackable0.1.0
- name: ldap-use-tls
values:
- "false"
Expand Down