argocd-helm/charts/argocd-applicationset/README.md
Jan-Otto Kröpke d4b603f4c8
feat(argocd-applicationset): Add extraArgs (#946)
* feat(argocd-applicationset): Add extraArgs

Signed-off-by: Jan-Otto Kröpke <joe@adorsys.de>

* Align with existing code style

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

* Fix linting error and update README

Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>

Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
2021-09-27 14:06:24 +02:00

5 KiB

Argo CD ApplicationSet Chart

A Helm chart for Argo CD ApplicationSet, a controller to programmatically generate Argo CD Application.

Source code can be found here

Additional Information

This is a community maintained chart. This chart installs the applicationset controller.

This chart currently installs the non-HA version of Argo CD ApplicationSet.

Prerequisites

  • Helm v3.0.0+
  • The ApplicationSet controller must be installed into the same namespace as the Argo CD it is targetting.

Installing the Chart

To install the chart with the release name my-release:

$ helm repo add argo https://argoproj.github.io/argo-helm
"argo" has been added to your repositories

$ helm install --name my-release argo/argocd-applicationset
NAME: my-release
...

Testing

Users can test the chart with kind and ct.

kind create cluster
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
ct install --namespace argocd

Notes on CRD Installation

Some users would prefer to install the CRDs outside of the chart. You can disable the CRD installation of this chart by using --skip-crds when installing the chart.

You then can install the CRDs manually from crds folder or via the manifests from the upstream project repo:

kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/crds?ref=<appVersion>

# Eg. version v0.1.0
kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/crds?ref=v0.1.0

Values

Key Type Default Description
affinity object {} Assign custom affinity rules to the deployment
args.argocdRepoServer string "argocd-repo-server:8081" The default Argo CD repo server address
args.debug bool false Print debug logs
args.dryRun bool false Enable dry run mode
args.enableLeaderElection bool false The default leader election setting
args.metricsAddr string ":8080" The default metric address
args.namespace string "argocd" The default Argo CD repo namespace
args.policy string "sync" How application is synced between the generator and the cluster
args.probeBindAddr string ":8081" The default health check port
extraArgs list [] List of extra cli args to add
extraVolumeMounts list [] List of extra mounts to add (normally used with extraVolumes)
extraVolumes list [] List of extra volumes to add
fullnameOverride string "" Override the default fully qualified app name
image.pullPolicy string "IfNotPresent" Image pull policy
image.repository string "quay.io/argoproj/argocd-applicationset" The image repository
image.tag string "" Overrides the image tag whose default is the chart appVersion.
imagePullSecrets list [] If defined, uses a Secret to pull an image from a private Docker registry or repository.
mountGPGKeyringVolume bool true Mount an emptyDir volume for gpg-keyring
mountGPGKeysVolume bool false Mount the argocd-gpg-keys-cm volume
mountSSHKnownHostsVolume bool true Mount the argocd-ssh-known-hosts-cm volume
mountTLSCertsVolume bool true Mount the argocd-tls-certs-cm volume
nameOverride string "" Provide a name in place of argocd-applicationset
nodeSelector object {} Node selector
podAnnotations object {} Annotations for the controller pods
podLabels object {} Labels for the controller pods
podSecurityContext object {} Pod Security Context
priorityClassName string "" If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default.
rbac.pspEnabled bool true Enable Pod Security Policy
replicaCount int 1 The number of controller pods to run
resources object {} Resource limits and requests for the controller pods.
securityContext object {} Security Context
serviceAccount.annotations object {} Annotations to add to the service account
serviceAccount.create bool true Specifies whether a service account should be created
serviceAccount.name string "" The name of the service account to use. If not set and create is true, a name is generated using the fullname template
tolerations list [] Tolerations for use with node taints

Autogenerated from chart metadata using helm-docs v1.5.0