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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ roxie has been authored with significant AI contributions.
- Automated fast ACS teardowns.
- Handles Quay image pull secrets automatically.
- Verifies image existence before attempting deployment.
- Helm charts supported: use `--helm` to deploy Central and Secured Cluster via Helm.

Note: Helm charts are currently also supported: use `--helm` to deploy Central and Secured Cluster via Helm. Only
use this in case you have very specific requirements which force you to use the Helm charts directly.
One example would be working on the Helm charts and needing to test them independently of the ACS operator.
Support for Helm charts might be dropped in the future.

## Quick start

Expand Down
4 changes: 2 additions & 2 deletions cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ func newDeployCmd() *cobra.Command {
Examples:
roxie deploy central
roxie deploy secured-cluster
roxie deploy both
roxie deploy central --helm`,
roxie deploy both`,
ValidArgs: []string{"central", "secured-cluster", "both", "all"},
Args: cobra.MaximumNArgs(1),
RunE: runDeploy,
}

cmd.Flags().BoolVar(&helm, "helm", false, "Deploy using Helm charts instead of operator")
_ = cmd.Flags().MarkHidden("helm")
cmd.Flags().BoolVar(&olm, "olm", false, "Deploy operator via OLM (requires OLM installed)")
cmd.Flags().BoolVar(&deployOperator, "deploy-operator", true, "Deploy and check operator (set to false to skip operator deployment/checks)")
cmd.Flags().BoolVar(&portForwarding, "port-forwarding", false, "Enable localhost port-forward for Central")
Expand Down
1 change: 1 addition & 0 deletions cmd/teardown.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ func newTeardownCmd() *cobra.Command {
}

cmd.Flags().BoolVar(&helm, "helm", false, "Force teardown of Helm deployment")
_ = cmd.Flags().MarkHidden("helm")
cmd.Flags().BoolVar(&singleNamespace, "single-namespace", false, "Deploy all components in a single namespace ('stackrox' by default)")

return cmd
Expand Down
Loading