Skip to content
Merged
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: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ All notable changes to this project will be documented in this file.
### Removed

- `stackable-regorule-crd` dependency ([#157]).
- BREAKING: `nodeEnvironment` from CRD. Will default to the `metadata.name` field (can be overriden) ([#183]).
- BREAKING: `nodeEnvironment` from CRD. Will default to the `metadata.name` field (can be overridden) ([#183]).
- BREAKING: Removed `authorization` module from CRD and code and provided the opa bundle via `ConfigMap` directly instead of generating it ([#186]).
- Possibly BREAKING: Removed `query.max-total-memory-per-node` config parameter ([#193]).

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ARG STACKABLE_USER_NAME="stackable"
# "-c": Allows the execution of commands passed as a string
SHELL ["/bin/bash", "-euo", "pipefail", "-c"]

# These labels have mostly been superceded by the OpenContainer spec annotations below but it doesn't hurt to include them
# These labels have mostly been superseded by the OpenContainer spec annotations below but it doesn't hurt to include them
# http://label-schema.org/rc1/
LABEL name="Stackable Operator for Trino"
LABEL maintainer="info@stackable.tech"
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/trino/pages/usage-guide/overrides.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Trino configuration is stored in several files listed below.
The configuration overrides menchanism allows you to customize parameters in these files;
consult the Trino documentation to find out which settings available.

Confiuration overrides are applied like so:
Configuration overrides are applied like so:

[source,yaml]
----
Expand Down
2 changes: 1 addition & 1 deletion rust/operator-binary/src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2148,7 +2148,7 @@ mod tests {
configOverrides:
access-control.properties:
hello-from-role: "true" # only defined here at role level
foo.bar: "false" # overriden by role group below
foo.bar: "false" # overridden by role group below
opa.allow-permission-management-operations: "false" # override value from config
roleGroups:
default:
Expand Down
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file includes unstable features, so you need to run "cargo +nightly fmt" to format your code.
# It's also ok to use the stable toolchain by simple running "cargo fmt", but using the nigthly formatter is prefered.
# It's also ok to use the stable toolchain by simple running "cargo fmt", but using the nightly formatter is preferred.

# https://doc.rust-lang.org/nightly/edition-guide/rust-2024/rustfmt-style-edition.html
style_edition = "2024"
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/commons/check-active-workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_connection(username, password, coordinator):

if int(active_workers) != int(expected_workers):
print(
"Missmatch: [expected/active] workers ["
"Mismatch: [expected/active] workers ["
+ str(expected_workers)
+ "/"
+ str(active_workers)
Expand Down
Loading