Runtime prerequisites
Complete the prerequisites depending on your installation mode
Before installing GitOps Runtimes, ensure you meet the system requirements, and complete the necessary prerequisites, which vary by installation mode.
This table lists the prerequisites for installing a GitOps Runtime, depending on the installation mode.
Prerequisite | Runtime with existing Argo CD | Runtime with new Argo CD | Runtime with Community Argo CD |
---|---|---|---|
Remove Argo Project and SealedSecret components | ✅ | ✅ | - |
Switch ownership of Argo Project CRDs | - | ✅ | ✅ |
Configure connectivity with Argo CD services | ✅ | - | - |
Verify Argo CD root path configuration | ✅ | - | - |
Align Argo CD chart’s minor versions | - | - | ✅ |
Set Community Argo CD resource tracking to label | - | - | ✅ |
For GitOps Runtime installation, the target cluster should not have:
- SealedSecret controller components
- For an existing Argo CD instance:
- Argo Events
- Argo Rollouts
- Argo Workflows
- For a new Argo CD instance:
- Argo CD
- Argo Events
- Argo Rollouts
- Argo Workflows
If you have Argo Project CRDs on your cluster, you must decide how to manage them when installing the GitOps Runtime.
The table below lists the options available depending on your installation mode.
Option | Description | Applicable Installation Modes |
---|---|---|
Adopt all Argo Project CRDs | Transfers ownership of all CRDs to the GitOps Runtime, ensuring they are automatically upgraded with the Runtime. |
|
Adopt only Argo Rollout CRDs | Transfers ownership of only Rollout CRDs to the GitOps Runtime. |
|
Handle CRDs outside the GitOps Runtime | Manage CRDs externally, by disabling installation for each type of CRD in the Helm chart. |
|
Adopt all Argo Project CRDs to transfer their ownership to the GitOps Runtime.
The GitOps Runtime manages them as part of the GitOps Runtime Helm chart:
- The CRDs are automatically upgraded whenever the Runtime is upgraded.
- They remain compatible with the GitOps environment.
- Run this script before installation:
curl https://raw.githubusercontent.com/codefresh-io/gitops-runtime-helm/main/scripts/adopt-crds.sh | bash -s <runtime-helm-release name> <runtime-namespace>
Adopting only Argo Rollouts CRDs ensures that there is only one active Argo Rollouts controller active on the cluster with the GitOps Runtime.
- Run this script before installation:
#!/bin/sh RELEASE=<runtime-helm-release-name> NAMESPACE=<runtime-namespace> kubectl label --overwrite crds $(kubectl get crd | grep argoproj.io | awk '{print $1}' | xargs) app.kubernetes.io/managed-by=Helm kubectl annotate --overwrite crds $(kubectl get crd | grep argoproj.io | awk '{print $1}' | xargs) meta.helm.sh/release-name=$RELEASE kubectl annotate --overwrite crds $(kubectl get crd | grep argoproj.io | awk '{print $1}' | xargs) meta.helm.sh/release-namespace=$NAMESPACE
- Disable CRD installation under the relevant section for each of the Argo Projects in the Helm chart:
--set <argo-project>.crds.install=false
where:
<argo-project>
is the Argo Project component:argo-cd
,argo-workflows
,argo-rollouts
andargo-events
.
See Argo’s readme on Helm charts.
Installing the GitOps Runtime with an existing Argo CD instance requires connectivity between the Runtime and key Argo CD services.
The following Argo CD services must be accessible from the GitOps Runtime:
argocd-server
argocd-repo-server
argocd-redis
There are two options to configure service discovery:
- Auto-detection via labels
- Configuring service names and ports in the Runtime’s
values.yaml
file.
Assign the correct labels to the Argo CD services for the GitOps Runtime to auto-detect them.
argocd-server
:app.kubernetes.io/component=server,app.kubernetes.io/part-of=argocd
argocd-repo-server
:app.kubernetes.io/component=repo-server,app.kubernetes.io/part-of=argocd
argocd-redis
:app.kubernetes.io/component=redis,app.kubernetes.io/part-of=argocd
If auto-detection is not feasible, configure the names and ports for each of the Argo CD services in the Runtime’s values.yaml
file located here.
Here’s an example of the service configuration in values.yaml
.
global:
external-argo-cd:
server:
svc: argocd
port: 80
redis:
svc: argocd-redis
port: 6379
repoServer:
svc: argocd-repo-server
port: 8081
...
If your existing Argo CD instance runs behind a reverse proxy and uses a non-default root path, you must configure the path in the Runtime’s values.yaml
in global.external-argo-cd.server.rootpath
.
Here’s an example of the non-default root path configuration for Argo CD in values.yaml
.
global:
external-argo-cd:
server:
svc: argocd
port: 80
rootpath: '/argocd' # example value if ArgoCD is behind a reverse proxy such as https://example.com/argocd/
...
To avoid potentially incompatible changes or mismatches, ensure that the Runtime installation with an existing Argo CD instance uses the same upstream version of Argo CD used by Codefresh.
TIP
If the chart’s minor appversion is lower than the version used by Codefresh, you will need to upgrade to the required version. For higher minor appversions that are not available in Codefresh forks, please contact Codefresh Support for assistance.
- Get the Argo CD chart version used by Codefresh from the Dependencies either in ArtifactHub or from the GitOps Runtime’s
Chart.yaml
in Git:
- Go to
https://github.com/codefresh-io/argo-helm/blob/argo-cd-<dependency-chart-version>/charts/argo-cd/Chart.yaml
where:
<dependency-chart-version>
is the Codefresh Argo CD chart version you retrieved in step 1, for example,5.38.1-1-cap-CR-18361
. - Check the
appVersion
as in the example below.
- If your minor appversion differs from that used by Codefresh, do one of the following:
- Lower version: Upgrade to the required minor appversion.
- Higher version: If not available in Codefresh forks, please contact Codefresh Support.
When installing a GitOps Runtime alongside an existing Argo CD instance, ensure that the existing Argo CD instance tracks resources using the label
method. If both the existing Argo CD and the Runtime Argo CD use the same tracking methods, conflicts may occur when tracking applications with the same name or when tracking the same resource.
- In the Argo CD namespace, check the
argocd-cm
ConfigMap. - Ensure that
argocd-cm.application.resourceTrackingMethod
is either:- Not defined, in which case it defaults to
label
, or - Explicitly set to
label
.
- Not defined, in which case it defaults to
GitOps Runtimes with ingress controllers/service meshes
Ingress configuration for Runtimes
Install GitOps Runtime with existing Argo CD
Install GitOps Runtime with new Argo CD
Install GitOps Runtime alongside Community Argo CD