Skip to content
Open
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@ All notable changes to this project will be documented in this file.
functions and carry the full set of recommended labels ([#731]).
- BREAKING: The `metastore` role is now required by the CRD; a HiveCluster without it was
previously accepted by the API server but failed reconciliation ([#731]).
- Bump stackable-operator to 0.114.0 ([#735]).
- Bump stackable-operator to 0.116.0 ([#735], [#748]).
- The reconciler now applies resources and derives the cluster status in discrete
apply and update_status steps ([#737]).
- All product containers now run with `securityContext.runAsNonRoot` set to `true` to improve security ([#741]).
- `envOverrides` names are now validated by the shared `EnvVarName` type rather than by
operator-specific validation code ([#748]).
- Remove the `app.kubernetes.io/component` and `app.kubernetes.io/role-group` labels from the
resources they don't apply to (previously set to `none` or a placeholder value) ([#748]).

### Fixed

Expand All @@ -31,6 +35,7 @@ All notable changes to this project will be documented in this file.
[#736]: https://github.com/stackabletech/hive-operator/pull/736
[#737]: https://github.com/stackabletech/hive-operator/pull/737
[#741]: https://github.com/stackabletech/hive-operator/pull/741
[#748]: https://github.com/stackabletech/hive-operator/pull/748

## [26.7.0] - 2026-07-21

Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

41 changes: 21 additions & 20 deletions Cargo.nix

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2024"
repository = "https://github.com/stackabletech/hive-operator"

[workspace.dependencies]
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.115.0", features = ["crds", "webhook"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.116.0", features = ["crds", "webhook"] }

anyhow = "1.0"
built = { version = "0.8", features = ["chrono", "git2"] }
Expand Down
18 changes: 9 additions & 9 deletions crate-hashes.json

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

6 changes: 4 additions & 2 deletions extra/crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,8 @@ spec:
default: {}
description: |-
`envOverrides` configure environment variables to be set in the Pods.
It is a map from strings to strings - environment variables and the value to set.
It is a map from environment variable names to their values. The names are validated to be
valid environment variable names.
Read the
[environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides)
for more information and consult the operator specific usage guide to find out about
Expand Down Expand Up @@ -1273,7 +1274,8 @@ spec:
default: {}
description: |-
`envOverrides` configure environment variables to be set in the Pods.
It is a map from strings to strings - environment variables and the value to set.
It is a map from environment variable names to their values. The names are validated to be
valid environment variable names.
Read the
[environment variable overrides documentation](https://docs.stackable.tech/home/nightly/concepts/overrides#env-overrides)
for more information and consult the operator specific usage guide to find out about
Expand Down
Loading
Loading