Skip to content

adnan-drina/argo-cli-install

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

argo-cli-install

Installing the ArgoCD Operator using the CLI

Setup Procedure

Ensure that the operator exists in the channel catalog.

oc get packagemanifests -n openshift-marketplace | grep gitops

Check the CSV information

oc describe packagemanifests/openshift-gitops-operator  -n openshift-marketplace

Create a Subscription

Create a Subscription object YAML file to subscribe a namespace to the ArgoCD Operator

argocd-sub.yaml

apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: openshift-gitops-operator
  namespace: openshift-operators
spec:
  channel: stable
  installPlanApproval: Automatic
  name: openshift-gitops-operator
  source: redhat-operators
  sourceNamespace: openshift-marketplace
oc apply -f argocd-sub.yaml

About

Installing the ArgoCD Operator using the CLI

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages