From 4311b97cc8ec3dc3ff8df7253b05401f05ba0120 Mon Sep 17 00:00:00 2001 From: Lars Francke Date: Wed, 18 Mar 2026 15:35:56 +0100 Subject: [PATCH] Fix typos --- CHANGELOG.md | 2 +- docker/Dockerfile | 2 +- docs/modules/trino/pages/usage-guide/overrides.adoc | 2 +- rust/operator-binary/src/controller.rs | 2 +- rustfmt.toml | 2 +- tests/templates/kuttl/commons/check-active-workers.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ec5e4d..47d2bf5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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]). diff --git a/docker/Dockerfile b/docker/Dockerfile index e844d2cc..118e1812 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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" diff --git a/docs/modules/trino/pages/usage-guide/overrides.adoc b/docs/modules/trino/pages/usage-guide/overrides.adoc index 56f6876e..7e48ede9 100644 --- a/docs/modules/trino/pages/usage-guide/overrides.adoc +++ b/docs/modules/trino/pages/usage-guide/overrides.adoc @@ -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] ---- diff --git a/rust/operator-binary/src/controller.rs b/rust/operator-binary/src/controller.rs index 80ecdb28..33acaa97 100644 --- a/rust/operator-binary/src/controller.rs +++ b/rust/operator-binary/src/controller.rs @@ -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: diff --git a/rustfmt.toml b/rustfmt.toml index 07217b21..03d21a4f 100644 --- a/rustfmt.toml +++ b/rustfmt.toml @@ -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" diff --git a/tests/templates/kuttl/commons/check-active-workers.py b/tests/templates/kuttl/commons/check-active-workers.py index 431d2dee..c3a969d0 100755 --- a/tests/templates/kuttl/commons/check-active-workers.py +++ b/tests/templates/kuttl/commons/check-active-workers.py @@ -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)