Argo CD
Terraform
You can reference the Argo CD pack in Terraform with the following data resource.
data "spectrocloud_registry" "public_registry" {
name = "Public Repo"
}
data "spectrocloud_pack" "argo_cd" {
name = "argo-cd"
version = "5.46.8"
registry_uid = data.spectrocloud_registry.public_registry.id
}
Edge Cluster Restore Configuration
For successful restores on Edge Native clusters, set numeric non-root IDs for the user, group, and filesystem group in the Argo CD pack values.yaml file under global.securityContext.
Example
global:
securityContext:
runAsUser: 999
runAsGroup: 999
fsGroup: 999