Skip to content

ROX-35435: Support differing versions of Central and SecuredCluster - #246

Open
vladbologa wants to merge 34 commits into
mainfrom
vb/differing-central-sc-versions
Open

ROX-35435: Support differing versions of Central and SecuredCluster#246
vladbologa wants to merge 34 commits into
mainfrom
vb/differing-central-sc-versions

Conversation

@vladbologa

@vladbologa vladbologa commented Jul 17, 2026

Copy link
Copy Markdown
Collaborator

Description

Roxie can now deploy Central and SecuredCluster at different versions on the same cluster (for compatibility testing), while keeping the single-version path unchanged.

Config and CLI

  • roxie.version / --tag remains the global default.
  • Optional overrides: central.operator.version / --central-tag and securedCluster.operator.version / --secured-cluster-tag.
  • Effective versions are resolved via CentralVersion() / SecuredClusterVersion(). When they differ, HasMixedVersions() is true.
  • Precedence: component-specific operator version > --tag / roxie.version.
  • Per-component OperatorConfig blocks also allow setting custom env vars per operator instance.

Operators

When versions match (common case):

  • One operator in rhacs-operator-system (unchanged).

When versions differ:

  • Operator for Central in rhacs-operator-central with SECURED_CLUSTER_RECONCILER_ENABLED=false.
  • Operator for SecuredCluster in rhacs-operator-sensor with CENTRAL_RECONCILER_ENABLED=false.
  • Distinct ClusterRole / ClusterRoleBinding names per instance (…-central / …-sensor).

This is derived automatically from version mismatch; users do not configure reconciler toggles or operator namespaces.

Limitations

  • Mixed versions with --olm / OLM deploy are not supported (hard error).
  • Mixed versions with roxie deploy operator (operator-only) are not supported (hard error).

Approaches considered

Approach Why not
Pause-reconcile annotation Leaves either Central or the Secured Cluster without an active operator.
Two separate roxie deploy invocations Awkward UX, problems with roxie shell.
Label selectors (CENTRAL_LABEL_SELECTOR / …) Designed for multi-tenant multi-CR setups. Overkill when there is one Central and one SecuredCluster; reconciler toggles are simpler.

Manual testing on an infra cluster

  1. Fresh mixed-version deploy — Central 4.11.1, SecuredCluster 4.10.0. Confirmed dual operators, correct reconciler toggles, matching product images; rhacs-operator-system unused.
  2. Teardown after mixed-version deployroxie teardown removed both dual-operator namespaces and component CRs/workloads.
  3. Same-version deploy--tag 4.11.1 only. Single operator in rhacs-operator-system, no reconciler toggles, no dual-operator namespaces.
  4. In-place single → mixed — Without prior teardown, switched to Central 4.11.1 / SecuredCluster 4.10.0. rhacs-operator-system removed; dual operators stood up correctly.
  5. In-place mixed → single — Without teardown, switched back to --tag 4.11.1. Both dual-operator namespaces removed; single operator deployed to rhacs-operator-system.
  6. Konflux + mixed versions--konflux --central-tag 4.11.1 --secured-cluster-tag 4.10.0. Each operator received correct per-version RELATED_IMAGE_* env vars and rewritten operator image. CRD apply skipped for older operator.
  7. In-place mixed → OLM — Without teardown, switched to --olm --tag 4.11.1. Dual-operator namespaces removed; OLM deployed operator to rhacs-operator-system via CatalogSource/Subscription.

Summary by CodeRabbit

  • New Features

    • Central and Secured Cluster versions can now be configured independently.
    • Added separate deployment options for Central and Secured Cluster image tags.
    • Supports mixed-version deployments with component-specific images, namespaces, and settings.
    • Konflux image configuration is now handled independently for each operator component.
  • Bug Fixes

    • Improved operator reconciliation, cleanup, readiness checks, and recovery for multi-version deployments.
    • Deployment summaries now display the correct component-specific image tags.
    • Added validation to prevent unsupported mixed-version deployment modes.

@coderabbitai

coderabbitai Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The deployment flow now supports independent Central and SecuredCluster operator versions. It plans per-instance deployments, generates instance-specific images and Konflux variables, validates mixed versions, and scopes OLM and non-OLM lifecycle operations to each operator instance.

Changes

Split Operator Support

Layer / File(s) Summary
Operator version model and planning
internal/helpers/tag.go, internal/deployer/config.go, internal/deployer/operator_instances.go, internal/deployer/operator_instances_test.go
Central and SecuredCluster versions can override the Roxie version. The configuration creates one shared or two component-specific operator instances.
Versioned images and Konflux environment assembly
internal/deployer/acs_images.go, internal/deployer/konflux.go, internal/deployer/konflux_test.go, internal/deployer/deployer.go
Image generation, bundle selection, Konflux variables, and deployment summaries use instance or component versions.
Per-instance operator deployment lifecycle
internal/deployer/operator.go
Non-OLM resources, CRDs, RBAC, readiness checks, image rewriting, environment injection, and teardown use instance namespaces and settings.
Deployment mode orchestration and validation
cmd/deploy.go, cmd/deploy_test.go, internal/deployer/deploy_via_operator.go
Deployment mode transitions, stale namespace cleanup, OLM reconciliation, per-instance reconciliation, and mixed-version validation are updated.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant DeployCommand
  participant Config
  participant ensureOperatorDeployed
  participant OperatorDeployment
  participant Kubernetes
  DeployCommand->>Config: apply Central and SecuredCluster tags
  Config-->>ensureOperatorDeployed: provide operator instances
  ensureOperatorDeployed->>OperatorDeployment: reconcile each instance
  OperatorDeployment->>Kubernetes: deploy resources in instance namespace
  Kubernetes-->>OperatorDeployment: return deployment state
  OperatorDeployment-->>ensureOperatorDeployed: report reconciliation result
Loading

Possibly related PRs

  • stackrox/roxie#203: Overlaps deployment validation, early-readiness handling, and operator configuration changes.
  • stackrox/roxie#215: Shares operator environment-variable handling and deployment-path changes.
  • stackrox/roxie#232: Shares Konflux image and environment handling changes.

Suggested reviewers: mclasmeier

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 16.22% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely describes the main change: supporting different versions of Central and SecuredCluster.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches 💡 1
📝 Generate docstrings 💡
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch vb/differing-central-sc-versions

Comment @coderabbitai help to get the list of available commands.

@coderabbitai

coderabbitai Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 6

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@internal/deployer/acs_images.go`:
- Around line 38-40: Update the image collection loop in the deployer flow
around OperatorInstances so single-operator configurations consistently use the
explicit Operator.Version override instead of mixing it with the resolved
instance version; alternatively, unify OperatorBundleImageForVersion and the OLM
Konflux environment-variable path on the same resolved version. Add a regression
test covering both Roxie.Version and Operator.Version being set, ensuring all
generated image references use one consistent operator version.

In `@internal/deployer/deploy_via_operator.go`:
- Around line 138-141: Update the early-return logic in the deployment flow
around isOperatorVersionCorrect so it also verifies the manager environment
matches instance.EnvVars, including component-specific reconciler flags and
Konflux/custom variables. Only return when both the image version and
environment are correct; otherwise reapply the desired Deployment using the
existing operator deployment path, preserving the split-mode flags defined by
the operator instance plan.
- Around line 110-125: The cleanup loop in deploy_via_operator.go around
AllOperatorNamespaces must attempt teardown for every undesired known namespace
without gating on operatorDeploymentExists or namespaceExists, allowing
teardownOperatorNonOLMInNamespace to remove namespaced and cluster-scoped
resources idempotently. In operator.go around the non-OLM cleanup flow, invoke
cleanup even when no Deployment is detected so partial resources are removed;
apply the change at both affected sites.

In `@internal/deployer/operator_instance.go`:
- Around line 78-82: Update the single-operator path in NeedsSplitOperators to
derive the operator version from the effective component version, honoring equal
Roxie and Operator overrides instead of using Roxie.Version directly. Preserve
the fallback behavior when no converted version is available, and extend
TestEffectiveVersions_BothOverridesSame_NoSplit with an assertion that the
deployed operator uses the override version.

In `@internal/deployer/operator.go`:
- Around line 575-598: Update the teardown flow around the kubectl deletion
calls and waitForNamespaceDeletion to propagate genuine deletion or timeout
errors instead of ignoring them or returning nil. Keep --ignore-not-found=true
for idempotent cleanup, but capture each runKubectl error and return it
immediately; likewise return the waitForNamespaceDeletion error before logging
success. Only log the success message and return nil after all cleanup steps
complete successfully.
- Around line 217-222: Update the EnvVars logging block in the operator
deployment flow to stop emitting environment values, since entries may contain
credentials or tokens. Preserve the existing count log and, if individual
entries are still needed, log only each variable’s name from envVarsToSortedList
without accessing or formatting ev["value"].
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Enterprise

Run ID: b2693e61-392e-405e-a4bb-6dd14e9c6436

📥 Commits

Reviewing files that changed from the base of the PR and between 4f94203 and 9500218.

📒 Files selected for processing (10)
  • cmd/deploy.go
  • internal/deployer/acs_images.go
  • internal/deployer/config.go
  • internal/deployer/deploy_via_operator.go
  • internal/deployer/deployer.go
  • internal/deployer/konflux.go
  • internal/deployer/konflux_test.go
  • internal/deployer/operator.go
  • internal/deployer/operator_instance.go
  • internal/deployer/operator_instance_test.go

Comment thread internal/deployer/acs_images.go Outdated
Comment thread internal/deployer/deploy_via_operator.go
Comment thread internal/deployer/deploy_via_operator.go
Comment thread internal/deployer/operator_instance.go Outdated
Comment thread internal/deployer/operator.go
Comment thread internal/deployer/operator.go
@vladbologa
vladbologa force-pushed the vb/differing-central-sc-versions branch from 3c45e8d to 3776248 Compare July 21, 2026 12:01
@vladbologa
vladbologa marked this pull request as ready for review July 21, 2026 12:01
Copilot AI review requested due to automatic review settings July 21, 2026 12:01

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
internal/deployer/operator_instance_test.go (1)

74-109: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Make override fixtures distinct from the global version.

These cases can pass if downstream planning accidentally uses Roxie.Version for a component, because it equals one expected component version.

  • internal/deployer/operator_instance_test.go#L74-L109: use a third Roxie version and verify the sensor instance still uses SecuredCluster.Version.
  • internal/deployer/operator_instance_test.go#L123-L139: set Roxie.Version below the Central override so this case proves Central participates in newest-version selection.
  • internal/deployer/operator_instance_test.go#L151-L165: use a third Roxie version and assert no global-version-only images are collected when both components override it.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@internal/deployer/operator_instance_test.go` around lines 74 - 109, The
operator instance tests use Roxie versions that can mask incorrect
global-version handling. In internal/deployer/operator_instance_test.go:74-109,
choose a distinct third Roxie version and keep asserting the sensor uses
SecuredCluster.Version; at 123-139, set Roxie.Version below the Central override
to verify Central drives newest-version selection; at 151-165, use a distinct
Roxie version and assert no images for the global-only version are collected
when both components override it.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@internal/deployer/operator_instance_test.go`:
- Around line 74-109: The operator instance tests use Roxie versions that can
mask incorrect global-version handling. In
internal/deployer/operator_instance_test.go:74-109, choose a distinct third
Roxie version and keep asserting the sensor uses SecuredCluster.Version; at
123-139, set Roxie.Version below the Central override to verify Central drives
newest-version selection; at 151-165, use a distinct Roxie version and assert no
images for the global-only version are collected when both components override
it.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Enterprise

Run ID: 57f74974-e5ca-442d-b25f-d4c9e9bd1f49

📥 Commits

Reviewing files that changed from the base of the PR and between 9500218 and 3776248.

📒 Files selected for processing (10)
  • cmd/deploy.go
  • internal/deployer/acs_images.go
  • internal/deployer/config.go
  • internal/deployer/deploy_via_operator.go
  • internal/deployer/deployer.go
  • internal/deployer/konflux.go
  • internal/deployer/konflux_test.go
  • internal/deployer/operator.go
  • internal/deployer/operator_instance.go
  • internal/deployer/operator_instance_test.go
🚧 Files skipped from review as they are similar to previous changes (9)
  • internal/deployer/config.go
  • internal/deployer/konflux.go
  • internal/deployer/konflux_test.go
  • internal/deployer/operator_instance.go
  • internal/deployer/deployer.go
  • cmd/deploy.go
  • internal/deployer/acs_images.go
  • internal/deployer/operator.go
  • internal/deployer/deploy_via_operator.go

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds mixed-version deployment support so Roxie can deploy Central and SecuredCluster at different versions on the same cluster, while preserving the existing single-version behavior.

Changes:

  • Introduces per-component version overrides (central.version / securedCluster.version, plus CLI flags) and resolves effective versions from config.
  • Enables dual non-OLM operator deployments (separate namespaces + per-instance reconciler toggles + distinct cluster-scoped RBAC names) and improves teardown/mode switching logic.
  • Updates image planning (including operator/bundle images) and deployment summaries to reflect effective component versions.

Reviewed changes

Copilot reviewed 10 out of 10 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
internal/deployer/operator.go Refactors non-OLM operator deployment/teardown to support multiple operator instances and per-instance RBAC names; gates CRD apply to the newest planned operator version.
internal/deployer/operator_instance.go Adds effective version resolution, mixed-version detection, operator instance planning, and “newest operator version” selection.
internal/deployer/operator_instance_test.go Adds unit tests for effective versions, operator instance planning, newest-version selection, and mixed-version image planning.
internal/deployer/konflux.go Refactors Konflux env-var population to support per-instance operator versions (merge-style API).
internal/deployer/konflux_test.go Updates tests for new Konflux APIs and adds coverage for per-instance version merging.
internal/deployer/deployer.go Updates deployment summaries to display effective Central/SecuredCluster versions rather than the global Roxie version.
internal/deployer/deploy_via_operator.go Extends operator deployment logic to deploy/validate multiple non-OLM operator instances and handle transitions between modes/namespaces.
internal/deployer/config.go Adds version override fields to Central and SecuredCluster config structs.
internal/deployer/acs_images.go Updates image selection to include unique effective main versions plus per-instance operator/bundle images (deduped).
cmd/deploy.go Adds CLI flags for per-component tags, validates unsupported mode combinations for mixed versions, and adjusts version-gated checks/Konflux behavior.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread cmd/deploy.go Outdated
Comment thread internal/deployer/deploy_via_operator.go
@vladbologa
vladbologa force-pushed the vb/differing-central-sc-versions branch from 3776248 to d63b2af Compare July 21, 2026 14:07
@vladbologa
vladbologa requested a review from Copilot July 21, 2026 14:21

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 10 out of 10 changed files in this pull request and generated 1 comment.

Comment thread internal/deployer/operator_instance.go Outdated
@vladbologa
vladbologa requested a review from mclasmeier July 21, 2026 14:39
Comment thread cmd/deploy.go
Comment thread internal/deployer/config.go
@vladbologa

Copy link
Copy Markdown
Collaborator Author

@coderabbitai review

@coderabbitai

coderabbitai Bot commented Jul 22, 2026

Copy link
Copy Markdown
Contributor
✅ Action performed

Review finished.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@mclasmeier mclasmeier left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not through yet.

Comment thread cmd/deploy.go Outdated
Comment thread cmd/deploy.go Outdated
Comment thread cmd/deploy.go Outdated
Comment thread cmd/deploy.go Outdated
Comment thread internal/deployer/operator_instance.go Outdated
Comment thread internal/deployer/operator_instance.go Outdated
Comment thread internal/deployer/operator_instance.go Outdated
Comment thread internal/deployer/konflux.go Outdated
Comment thread internal/deployer/konflux.go Outdated
Comment thread internal/deployer/deployer.go Outdated
@vladbologa
vladbologa force-pushed the vb/differing-central-sc-versions branch 2 times, most recently from 59b1ec9 to 114c96f Compare July 29, 2026 13:53
@vladbologa

Copy link
Copy Markdown
Collaborator Author

@coderabbitai can you do a full review again?

@coderabbitai

coderabbitai Bot commented Jul 29, 2026

Copy link
Copy Markdown
Contributor

@vladbologa: Starting a full review of PR #246 again, including previously reviewed changes.

✅ Action performed

Full review finished.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@cmd/deploy.go`:
- Around line 462-482: Update the !hasSupport error returned in the
OperatorInstances loop to include the failing instance’s identity and
instance.Version, matching the detail already provided by the parse-error
branch. Preserve the existing constraint text while making the message
distinguish whether Central or SecuredCluster failed.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Enterprise

Run ID: fc62d098-8e11-41fc-811c-166905f78563

📥 Commits

Reviewing files that changed from the base of the PR and between 436a957 and 114c96f.

📒 Files selected for processing (11)
  • cmd/deploy.go
  • internal/deployer/acs_images.go
  • internal/deployer/config.go
  • internal/deployer/deploy_via_operator.go
  • internal/deployer/deployer.go
  • internal/deployer/konflux.go
  • internal/deployer/konflux_test.go
  • internal/deployer/operator.go
  • internal/deployer/operator_instance.go
  • internal/deployer/operator_instance_test.go
  • internal/helpers/tag.go

Comment thread cmd/deploy.go Outdated
@vladbologa
vladbologa requested a review from mclasmeier July 29, 2026 16:29
Comment thread cmd/deploy.go Outdated
}

if deploySettings.HasMixedVersions() {
globalLogger.Dimf("Mixed versions detected (configured via --central-tag / --secured-cluster-tag or central.operator / securedCluster.operator)")

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, I'd suggest to propagate the logger from here for consistency -- I think currently we are nowhere using the globalLogger directly.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in dcb8379

Comment thread cmd/deploy.go Outdated
// This is why we use the operator version here when checking version constraints.
// Check every operator instance that will be deployed.
for _, instance := range deploySettings.OperatorInstances() {
hasSupport, err := stackroxversions.SupportsAdditionalPrinterColumns(instance.Version)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, we are conflating the central&securedCluster versions here, right?
If central has earlyReadiness disabled and the central version supports it, but the secured Cluster version doesn't support it, we would still fail, right?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 780994c

Comment thread internal/deployer/acs_images.go Outdated
}

// OperatorBundleImage returns the operator bundle image for a specific operator version.
func OperatorBundleImage(operatorVersion string, konflux bool) string {

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have been asking myself, why you changed this function from

func OperatorBundleImage(config Config) string { ... }

to

func OperatorBundleImage(operatorVersion string, konflux bool) string { ... }

the answer seems to be: you made it working for "OperatorInstances". This got me thinking:

  1. Isn't it actually a bogus decision that we have roxie.konfluxImages now? Seems to me that this should actually also be a field in OperatorConfig!

  2. The OperatorInstance -- do we really need it? I have the impression we could simplify the code more if we were just using the OperatorConfig instead -- that essentially describes how an operator instance should look like.

  3. The only thing that the Operator Instance currently provides, what the OperatorConfig currently doens't provide is the "suffix". But we could add that to OperatorConfig -- in the usual case a user wouldn't have a reason to set it, but even if the user did set it, it wouldn't harm. And we gut drop the OperatorInstance and get rid of the conversion, no?

WDYT?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should start with OperatorConfig, because as it right now it allows overriding some fields that don't make sense per individual operator (SkipDeployment, DeployViaOlm and also KonfluxImages if we add it to the struct).

E.g. now you can do things like:

central.operator.deployViaOlm = true
securedCluster.operator.deployViaOlm = false

So to address this, and also your concerns (btw at point 3, there's also the namespace that OperatorInstance adds), I'm thinking of something like this:

// OperatorInstanceConfig describes how to deploy a single operator instance.
type OperatorInstanceConfig struct {
    Version        string            `yaml:"version,omitempty"`
    EnvVars        map[string]string `yaml:"envVars,omitempty"`
    Namespace      string            `yaml:"namespace,omitempty"`
    RoleNameSuffix string            `yaml:"roleNameSuffix,omitempty"`
}

// OperatorConfig is the top-level operator configuration.
type OperatorConfig struct {
    SkipDeployment *bool `yaml:"skipDeployment,omitempty"`
    DeployViaOlm   *bool `yaml:"deployViaOlm,omitempty"`
    KonfluxImages  bool              `yaml:"konfluxImages,omitempty"`
    OperatorInstanceConfig   `yaml:",inline"`
}

type CentralConfig struct {
    Operator  OperatorInstanceConfig  `yaml:"operator,omitempty"`
    // ... other fields
}

type SecuredClusterConfig struct {
    Operator  OperatorInstanceConfig  `yaml:"operator,omitempty"`
    // ... other fields
}

type Config struct {
    Roxie          RoxieConfig          `yaml:"roxie,omitempty"`
    Operator       OperatorConfig       `yaml:"operator,omitempty"`
    Central        CentralConfig        `yaml:"central,omitempty"`
    SecuredCluster SecuredClusterConfig `yaml:"securedCluster,omitempty"`
}

This is backwards compatible (OperatorInstanceConfig is added inline to OperatorConfig), doesn't allow inconsistent configurations, and also OperatorInstance can go away, we just return []OperatorConfig.

And also OperatorBundleImage can take just a config.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why would konfluxImages not make sense for per-component operators?
I mean, I am not saying that this would be a particular useful combination but I guess we wouldn't need to add validation of some sort to exclude this case if it technically works fine:

e.g.
central with konflux operator
securedCluster with upstream operator

why special-case this?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd have to refactor imagesForConfig in acs_images.go for that to work, but it's doable.

And what should we do with the existing onfig.Roxie.KonfluxImages? Keep it and propagate it to both configs, and it can be overridden?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Regarding Roxie.KonfluxImages, since it is already used in my qa-e2e-tests PR, we better keep that working for now. But I only need it for the single operator use-case. I think "Keep it, propagate it to all operator configs (if changed -- to keep the sub-configs empty in the normal case), allow overriding" is sensible.

}

// Detect current operator deployment mode
instances := d.preparedOperatorInstances()

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move down, because it is not needed yet?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Comment thread internal/deployer/deploy_via_operator.go
return d.ensureOperatorDeployedOLM(ctx)
}

// Switching from OLM to non-OLM in the system namespace.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Am I overlooking something? This comment seems wrong.
Only after L68, after looking at currentMode, we can deduce from that that we are switching from OLM to non-OLM? It could also be that currentMode == OperatorModeNonOLM, in which case the comment would be wrong.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removed it

instance := OperatorInstance{Namespace: ns}
switch ns {
case operatorNamespaceCentral:
instance.RoleNameSuffix = "central"

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess we should define constants for these and use those constants consistently.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 15d408a

@vladbologa
vladbologa force-pushed the vb/differing-central-sc-versions branch from d1c85ce to 879ae62 Compare July 31, 2026 12:36
@vladbologa

Copy link
Copy Markdown
Collaborator Author

@CodeRabbit fresh review please

@coderabbitai

coderabbitai Bot commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

@vladbologa I will run a fresh full review of PR #246, including previously reviewed changes.

✅ Action performed

Full review finished.

Comment thread internal/helpers/tag.go
Comment thread internal/deployer/config.go
Comment thread internal/deployer/acs_images.go

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 5

🧹 Nitpick comments (4)
internal/deployer/deploy_via_operator.go (2)

249-252: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Include the namespace in the warning.

Two operator instances can now fail this lookup. The message does not identify which namespace failed.

♻️ Proposed fix
-		d.logger.Warningf("Could not retrieve operator image: %v", err)
+		d.logger.Warningf("Could not retrieve operator image in %s: %v", instance.Namespace, err)
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@internal/deployer/deploy_via_operator.go` around lines 249 - 252, Update the
warning in the operator image lookup error path to include the relevant
namespace alongside the error details, using the namespace variable available in
the surrounding deploy flow. Keep the existing return behavior unchanged.

107-113: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Extract the namespace-to-instance mapping into one helper.

The same namespace-to-RoleNameSuffix mapping appears in internal/deployer/operator.go in teardownOperatorNonOLM and teardownAllOperatorClusterRBAC. A single helper, for example operatorInstanceForNamespace(ns string) OperatorInstanceConfig, would keep the three sites in sync.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@internal/deployer/deploy_via_operator.go` around lines 107 - 113, Extract the
namespace-to-OperatorInstanceConfig mapping into a shared
operatorInstanceForNamespace(ns string) helper, including the RoleNameSuffix
assignments for operatorNamespaceCentral and operatorNamespaceSensor. Replace
the duplicated mapping logic in the current deployment path and in
teardownOperatorNonOLM and teardownAllOperatorClusterRBAC, preserving each
site’s existing behavior.
internal/deployer/operator.go (1)

602-606: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Role-suffix string literals bypass the existing constants in internal/deployer/operator.go. Both teardown helpers hardcode "central" and "sensor" for RoleNameSuffix, while internal/deployer/deploy_via_operator.go uses roleNameSuffixCentral and roleNameSuffixSensor. If a constant value changes, these two sites target stale ClusterRole and ClusterRoleBinding names and leave cluster-scoped resources behind.

  • internal/deployer/operator.go#L602-L606: replace the literals in the teardownAllOperatorClusterRBAC instance list with roleNameSuffixCentral and roleNameSuffixSensor.
  • internal/deployer/operator.go#L626-L632: replace the literals in the teardownOperatorNonOLM namespace switch with the same constants.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@internal/deployer/operator.go` around lines 602 - 606, Replace the hardcoded
"central" and "sensor" role suffixes with roleNameSuffixCentral and
roleNameSuffixSensor in teardownAllOperatorClusterRBAC’s instance list and
teardownOperatorNonOLM’s namespace switch in internal/deployer/operator.go at
lines 602-606 and 626-632, respectively, so both teardown paths reuse the
deployment constants.
cmd/deploy_test.go (1)

46-59: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Add table cases for --central-tag and --secured-cluster-tag.

The table covers --tag in short and long form, but not the two new flags. Cases that assert cfg.Central.Operator.Version and cfg.SecuredCluster.Operator.Version, plus one case that combines --tag with a single component override, would lock in the precedence behavior.

💚 Proposed test cases
{
	name: "central-tag flag",
	args: []string{"--central-tag", "4.8.0"},
	assert: func(t *testing.T, cfg deployer.Config) {
		assert.Equal(t, helpers.MainTag("4.8.0"), cfg.Central.Operator.Version, "Central.Operator.Version mismatch")
	},
},
{
	name: "secured-cluster-tag overrides tag for SecuredCluster only",
	args: []string{"--tag", "4.7.0", "--secured-cluster-tag", "4.8.0"},
	assert: func(t *testing.T, cfg deployer.Config) {
		assert.Equal(t, helpers.MainTag("4.7.0"), cfg.Roxie.Version, "Roxie.Version mismatch")
		assert.Equal(t, helpers.MainTag("4.8.0"), cfg.SecuredCluster.Operator.Version, "SecuredCluster.Operator.Version mismatch")
		assert.Empty(t, cfg.Central.Operator.Version, "Central.Operator.Version should stay unset")
	},
},
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@cmd/deploy_test.go` around lines 46 - 59, Add table-driven cases alongside
the existing tag cases in the deploy configuration tests for --central-tag and
--secured-cluster-tag, asserting the corresponding Central.Operator.Version and
SecuredCluster.Operator.Version values. Include a combined --tag plus
--secured-cluster-tag case to verify the component override takes precedence
while Roxie keeps the base tag and Central.Operator.Version remains unset.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@cmd/deploy.go`:
- Around line 499-508: Update the early-readiness validation around
checkEarlyReadinessSupport so each check runs only when its corresponding
component is included in components: gate the Central check with the Central
deployment condition and the SecuredCluster check with the SecuredCluster
deployment condition, while preserving the existing EarlyReadinessEnabled and
error-return behavior.
- Around line 489-497: The mixed-version check in
deploySettings.HasMixedVersions must compare normalized operator tags rather
than raw MainTag values. Update HasMixedVersions to compare
CentralVersion().ToOperatorTag() with SecuredClusterVersion().ToOperatorTag(),
preserving the existing callers and rejection behavior for genuinely different
versions.

In `@internal/deployer/config.go`:
- Around line 79-82: Update the comments for OperatorInstanceConfig,
CentralConfig.Operator, and SecuredClusterConfig.Operator to match
OperatorInstances(): per-component Version values are used in both single and
mixed modes, while mixed-mode per-component configuration fully replaces rather
than overrides or merges with the top-level Operator configuration.

In `@internal/deployer/operator.go`:
- Around line 647-649: Update the OLM branch in the operator teardown flow to
call teardownOperatorNonOLM after teardownOperatorOLM completes successfully,
ensuring split deployments in operatorNamespaceCentral and
operatorNamespaceSensor are removed while preserving the existing error
propagation behavior.
- Around line 171-179: Update the bundle image selection around
NewestOperatorVersion so it uses the planned operator instance matching that
effective version, including its KonfluxImages setting, rather than constructing
OperatorInstanceConfig from the global configuration. Reuse the matching
instance’s BundleImage() result, while preserving the existing fallback to
d.config.Operator.Version when no newest version is configured.

---

Nitpick comments:
In `@cmd/deploy_test.go`:
- Around line 46-59: Add table-driven cases alongside the existing tag cases in
the deploy configuration tests for --central-tag and --secured-cluster-tag,
asserting the corresponding Central.Operator.Version and
SecuredCluster.Operator.Version values. Include a combined --tag plus
--secured-cluster-tag case to verify the component override takes precedence
while Roxie keeps the base tag and Central.Operator.Version remains unset.

In `@internal/deployer/deploy_via_operator.go`:
- Around line 249-252: Update the warning in the operator image lookup error
path to include the relevant namespace alongside the error details, using the
namespace variable available in the surrounding deploy flow. Keep the existing
return behavior unchanged.
- Around line 107-113: Extract the namespace-to-OperatorInstanceConfig mapping
into a shared operatorInstanceForNamespace(ns string) helper, including the
RoleNameSuffix assignments for operatorNamespaceCentral and
operatorNamespaceSensor. Replace the duplicated mapping logic in the current
deployment path and in teardownOperatorNonOLM and
teardownAllOperatorClusterRBAC, preserving each site’s existing behavior.

In `@internal/deployer/operator.go`:
- Around line 602-606: Replace the hardcoded "central" and "sensor" role
suffixes with roleNameSuffixCentral and roleNameSuffixSensor in
teardownAllOperatorClusterRBAC’s instance list and teardownOperatorNonOLM’s
namespace switch in internal/deployer/operator.go at lines 602-606 and 626-632,
respectively, so both teardown paths reuse the deployment constants.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yml

Review profile: CHILL

Plan: Enterprise

Run ID: e7049817-2618-4a62-b008-6598e78d28e7

📥 Commits

Reviewing files that changed from the base of the PR and between 8ed0baf and dcb8379.

📒 Files selected for processing (12)
  • cmd/deploy.go
  • cmd/deploy_test.go
  • internal/deployer/acs_images.go
  • internal/deployer/config.go
  • internal/deployer/deploy_via_operator.go
  • internal/deployer/deployer.go
  • internal/deployer/konflux.go
  • internal/deployer/konflux_test.go
  • internal/deployer/operator.go
  • internal/deployer/operator_instances.go
  • internal/deployer/operator_instances_test.go
  • internal/helpers/tag.go

Comment thread cmd/deploy.go
Comment thread cmd/deploy.go Outdated
Comment thread internal/deployer/config.go
Comment thread internal/deployer/operator.go Outdated
Comment thread internal/deployer/operator.go
Comment on lines +16 to +18
if t == "" {
return ""
}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what about

Suggested change
if t == "" {
return ""
}

for conciseness?

Comment thread internal/deployer/konflux.go Outdated
return fmt.Sprintf("%s/release-operator:%s", constants.DefaultRegistry, config.Operator.Version)
// KonfluxOperatorImage returns the Konflux-built operator image reference for an operator version.
func KonfluxOperatorImage(operatorVersion string) string {
return fmt.Sprintf("%s/release-operator:%s", constants.DefaultRegistry, operatorVersion)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FTR, we are duplicating this image ref construction.
Would be cool if we find a way around this, thereby consolidating the image ref construction for the konflux case in a single function.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, this is now done by OperatorImage(). Removed it in 3f5b6c0

// PopulateKonfluxEnvVars adds RELATED_IMAGE_* entries to the instance's EnvVars
// for its version. It is a no-op when Konflux images are not enabled for the instance.
// Explicitly-provided env vars (e.g. from --operator-env) take precedence and are not overwritten.
func PopulateKonfluxEnvVars(instance *OperatorInstanceConfig) {

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, function name doesn't match anymore. It's now more something like "ensureKonfluxEnvVarsIfNeeded" (not proposing exactly that).

Comment thread internal/deployer/konflux.go Outdated
constants.DefaultRegistry,
imageSuffix,
config.Operator.Version, // Konflux built images use the "operator tag".
operatorTag,

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would personally keep the comment, because it is surprising to me that here we actually use the operator tag for main image, etc.

(side note: we will probably need to rework this when tackling the other ticket about configurable image registries)

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 970a1c7

Comment thread internal/deployer/konflux_test.go Outdated
}

PopulateKonfluxEnvVars(config)
instance := &OperatorInstanceConfig{Version: "4.9.2", KonfluxImages: ptr.To(true)}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, In new Go code we can simply use new(value) and don't need to pull in ptr.To.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in 84e3cb1

Comment thread internal/deployer/operator_instances.go Outdated
if c.SecuredCluster.Operator.Version != "" {
return c.SecuredCluster.Operator.Version
}
return c.Roxie.Version

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in bc2db8b

func (c *Config) OperatorInstances() []OperatorInstanceConfig {
if !c.HasMixedVersions() {
return []OperatorInstanceConfig{{
Version: c.CentralVersion(),

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wouldn't it be more natural to reference c.Operator.Version here?
(In particular, given that we access other fields in c.Operator below).

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know, but it doesn't work in a particular edge case.

Let's say that Roxie.Version and Operator.Version are 4.10, but Central.Operator.Version and SecuredCluster.Operator.Version are both 4.11.

Then HasMixedVersions will return false, but c.Operator.Version will be 4.10 instead of 4.11.

There used to be a check to guard against this configuration, but you asked me to remove it in another comment.

Comment thread internal/deployer/operator_instances.go Outdated
if instanceCfg.KonfluxImagesSet() {
return instanceCfg.KonfluxImages
}
return c.Roxie.KonfluxImages

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same thing I have said previously about Roxie.Version vs. Operator.Version also applies here: I see the former as the wrong choice which we ought to keep for backwards compatibility, but after initialization including the propagation of these values into their proper places (operator configurations), we shouldn't be accessing c.Roxie.KonfluxImages any longer.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in bc2db8b

Comment thread internal/deployer/operator_instances.go Outdated
}}
}

centralEnvVars := make(map[string]string, len(c.Central.Operator.EnvVars)+1)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this be renamed to something like centralOperatorEnvVars, sensorOperatorEnvVars, because these are clearly not env vars for central/sensor.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in bc2db8b

maps.Copy(sensorEnvVars, c.SecuredCluster.Operator.EnvVars)
sensorEnvVars[envCentralReconcilerEnabled] = "false"

return []OperatorInstanceConfig{

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we assembling these structs from scratch here?

Also, aren't we throwing away the things like configurable rule name suffix, configurable namespace?

I mean, we already have OperatorInstanceConfig's in Central and SecuredCluster -- the thing that is missing IMHO is the merging, i.e. making the per-component configurations overwrite/extend the global operator config. We can use mergo.Merge for that without listing all fields individually.
Also, we can use mergo.Mergo for setting defaults for unset values (namespace, suffix).

@vladbologa vladbologa Aug 4, 2026

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In an older version, the operator configs were additive, but you suggested that "replacing would be the more conservative thing to do for the initial roll out of this feature". So now they are doing that.

But your comment also made me realize that I didn't want to have configurable namespaces and suffixes. It happened when I removed the OperatorInstance struct in cde615467fe0d5fe7025f8c19bb8ba272c105592and moved them to OperatorInstanceConfig, and I didn't realize the implication.

See also #246 (comment)

Comment on lines +154 to +155
// Remove any leftover dual-operator namespaces before installing via OLM.
desired := []OperatorInstanceConfig{{Namespace: operatorNamespaceSystem}}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

comment and code don't match?
Comments refers -- as I understand it -- to per-component-operators (plural) but we are only instructing deletion of the global namespace?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

desired means which namespace should exist, and the others can be deleted

So in this case rhacs-operator-system should exist, and rhacs-operator-central & rhacs-operator-sensor can be deleted.

This ofc doesn't work if the user sets customized namespaces, but that's not something I actually wanted to have (see #246 (comment))

if d.config.Operator.DeployViaOlmEnabled() {
return d.ensureOperatorDeployedOLM(ctx)
}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit, for me it is always helpful to add a comment like

Suggested change
// Non-OLM case.

after the initial seperation of cases (L61-L63).

Comment on lines +76 to +79
instances := d.config.OperatorInstances()
if err := d.teardownStaleOperatorNamespaces(ctx, instances); err != nil {
return err
}

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is not what I would expect.

Say I deploy with one config, which does configures per-component operators.

Now I want to deploy with a new config, which does not do that.

This teardownStaleOperatorNamespaces() invocation would use the latter and not find anything to be torn down, no?

My expectation would be that it tears down the previously deployed per-component operators.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe there are generally speaking two approaches here:

  1. Inspect the cluster and try to identify where an operator might be hiding (could be non-standard namespace, making it cumbersome).
  2. Use LoadManifestSecret() and rely on that.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The logic actually works the other way around:

  • instances contains what we want to deploy (the desired state).
  • teardownStaleOperatorNamespaces() then goes and checks existing namespaces, and removes those that are not needed, from the list of possible namespaces (rhacs-operator-system, rhacs-operator-central, rhacs-operator-sensor).

So if you were in single mode now switching to dual mode, teardownStaleOperatorNamespaces will detect the presence rhacs-operator-system, it will know that it's not needed, and it will remove it. Conversely, if you're in dual namespace mode and converting to single, teardownStaleOperatorNamespaces will determine that rhacs-operator-central and rhacs-operator-sensor are not needed and will remove them.

BTW this logic is covered by tests 4 and 5 of the manual tests (and to some extent also test 7).

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😳 Let me check again

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I understand your concern now. 🤦

I never intended to make the namespaces and the role name suffixes user configurable, but by adding them to OperatorInstanceConfig, I did just that. You wanted to remove the OperatorInstance struct, and I didn't fully realize the consequences.

So the teardown logic now doesn't work if the user sets custom namespaces, true. But TBH I'd prefer not to introduce logic for user customizable namespaces in role names in this PR, it's again scope creep.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants