Skip to content
Merged
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
3 changes: 1 addition & 2 deletions crates/stackable-operator/src/v2/role_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,11 @@ pub struct JavaCommonConfig {
/// Variant of [`crate::role_utils::RoleGroup`] that is easier to work with
///
/// Differences are:
/// * `replicas` is non-optional.
/// * `config` is flattened.
/// * The [`HashMap`] in `env_overrides` is replaced with an [`EnvVarSet`].
#[derive(Clone, Debug, PartialEq)]
pub struct RoleGroupConfig<Config, CommonConfig, ConfigOverrides> {
pub replicas: u16,
pub replicas: Option<u16>,
pub config: Config,
pub config_overrides: ConfigOverrides,
pub env_overrides: EnvVarSet,
Expand Down
Loading