appendix B. Setting up GitOps tools
This appendix will go over step-by-step instructions to set up the tools required for the tutorials in part 3.
B.1 Installing Argo CD
Argo CD supports several installation methods. You might use the official Kustomize-based installation, the community-maintained Helm chart,1 or even the Argo CD operator2 to manage your Argo CD deployments. The simplest possible installation method requires using only a single YAML file. Go ahead and use the following commands to install Argo CD into your minikube cluster:
$ kubectl create namespace argocd $ kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
This command installs all Argo CD components with the default ...
Get GitOps and Kubernetes now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.