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
65 changes: 0 additions & 65 deletions Cargo.lock

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

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ edition = "2024"
repository = "https://github.com/stackabletech/operator-rs"

[workspace.dependencies]
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.8.0" }

arc-swap = "1.7.0"
async-trait = "0.1.89"
axum = { version = "0.8.1", features = ["http2"] }
Expand Down Expand Up @@ -85,7 +83,6 @@ stackable-operator-derive = { path = "stackable-operator-derive" }
strum = { version = "0.28.0", features = ["derive"] }
syn = "2.0.118"
sysinfo = "0.39.5"
tempfile = "3.12.0"
time = { version = "0.3.49" }
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "fs"] }
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
Expand Down
5 changes: 5 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ All notable changes to this project will be documented in this file.
- [v2] BREAKING: Converting an `EnvVarSet` into a `Vec<EnvVar>` takes dependencies between
environment variables into account ([#1249]).

### Removed

- [v2] BREAKING: Remove dependency to product-config and the product_config_utils module ([#1252]).

[#1249]: https://github.com/stackabletech/operator-rs/pull/1249
[#1251]: https://github.com/stackabletech/operator-rs/pull/1251
[#1252]: https://github.com/stackabletech/operator-rs/pull/1252

## [0.113.4] - 2026-07-09

Expand Down
2 changes: 0 additions & 2 deletions crates/stackable-operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ jiff.workspace = true
json-patch = { workspace = true, features = ["schemars"] }
k8s-openapi.workspace = true
kube.workspace = true
product-config.workspace = true
rand.workspace = true
regex.workspace = true
schemars.workspace = true
Expand All @@ -65,7 +64,6 @@ xml.workspace = true
[dev-dependencies]
indoc.workspace = true
rstest.workspace = true
tempfile.workspace = true

[lints]
workspace = true
6 changes: 0 additions & 6 deletions crates/stackable-operator/src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,9 @@ use crate::{namespace::WatchNamespace, utils::cluster_info::KubernetesClusterInf

mod environment;
mod maintenance;
mod product_config;

pub use environment::*;
pub use maintenance::*;
pub use product_config::*;

// NOTE (@Techassi): Why the hell is this here? Let's get rid of it.
pub const AUTHOR: &str = "Stackable GmbH - info@stackable.tech";
Expand Down Expand Up @@ -80,10 +78,6 @@ pub enum Command<Run: Args = RunArguments> {
#[derive(Debug, PartialEq, Eq, Parser)]
#[command(long_about = "")]
pub struct RunArguments {
/// Provides the path to a product-config file
#[arg(long, short = 'p', value_name = "FILE", default_value = "", env)]
pub product_config: ProductConfigPath,

// TODO (@Techassi): This should be moved into the environment options
/// Provides a specific namespace to watch (instead of watching all namespaces)
#[arg(long, env, default_value = "")]
Expand Down
173 changes: 0 additions & 173 deletions crates/stackable-operator/src/cli/product_config.rs

This file was deleted.

Loading