Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.07 KB

File metadata and controls

40 lines (32 loc) · 1.07 KB
sidebar_label title description type category sidebar_class_name logoUrl tags
Argo CD
Argo CD
Argo CD for Spectro Cloud Palette
integration
system app
amd64
hide-from-sidebar
packs
argo-cd
system app

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.

global:
  securityContext:
    runAsUser: 999
    runAsGroup: 999
    fsGroup: 999