-
Notifications
You must be signed in to change notification settings - Fork 1.8k
RHDEVDOCS-6468: Adding a missing module in GitOps 1.16 #94081
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,53 @@ | ||||||||||||
// Module included in the following assemblies: | ||||||||||||
// | ||||||||||||
// * argo_rollouts/using-argo-rollouts-for-progressive-deployment-delivery.adoc | ||||||||||||
|
||||||||||||
:_mod-docs-content-type: PROCEDURE | ||||||||||||
[id="gitops-enabling-argo-rollouts-ui-on-an-argo-cd-instance_{context}"] | ||||||||||||
= Enabling Argo Rollouts UI on an Argo CD instance | ||||||||||||
|
||||||||||||
To enable Argo Rollouts UI on an Argo CD instance, complete the following steps. | ||||||||||||
|
||||||||||||
.Prerequisites | ||||||||||||
|
||||||||||||
* You have access to the cluster with `cluster-admin` privileges. | ||||||||||||
|
||||||||||||
* You have installed the {gitops-title} Operator on your {OCP} cluster. | ||||||||||||
|
||||||||||||
* You have configured the `RolloutManager` custom resource (CR). | ||||||||||||
|
||||||||||||
.Procedure | ||||||||||||
|
||||||||||||
. Log in to the {OCP} web console. | ||||||||||||
|
||||||||||||
. In the *Administrator* perspective of the web console, click *Operators* -> *Installed Operators*. | ||||||||||||
|
||||||||||||
. Select *{gitops-title}* from the installed Operators list and click the *Argo CD* tab. | ||||||||||||
|
||||||||||||
. Select the Argo CD instance in the *Argo CD* tab under the `openshift-gitops` namespace. | ||||||||||||
|
||||||||||||
. Click *YAML* and add the following configuration to configure the Argo Rollouts UI: | ||||||||||||
+ | ||||||||||||
.Example enabling Argo Rollouts UI in the Argo CD CR | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
[source,yaml] | ||||||||||||
---- | ||||||||||||
apiVersion: argoproj.io/v1beta1 | ||||||||||||
kind: ArgoCD | ||||||||||||
metadata: | ||||||||||||
name: argocd | ||||||||||||
spec: | ||||||||||||
server: | ||||||||||||
enableRolloutsUI: true # <1> | ||||||||||||
---- | ||||||||||||
Comment on lines
+40
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
<1> Set this value to `true` to configure the `enableRolloutsUI` field. | ||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||
|
||||||||||||
. Click *Save*. | ||||||||||||
|
||||||||||||
. In the *Administrator* perspective of the web console, go to the {rh-app-icon} menu and click *OpenShift GitOps* -> *Cluster Argo CD*. The login page of the Argo CD Web UI is displayed in a new window. | ||||||||||||
|
||||||||||||
. To access the Argo Rollouts UI in the Argo CD Web UI, configure a sample application that includes the Argo Rollouts resources. | ||||||||||||
+ | ||||||||||||
[NOTE] | ||||||||||||
==== | ||||||||||||
The `enableRolloutsUI` field restarts the Argo CD server deployment pod. Therefore, it takes a few seconds for the Argo Rollouts extension to enable in the Argo CD Web UI. | ||||||||||||
==== |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.