![]() # Context This flag was added in this PR https://github.com/argoproj/argo-cd/pull/10237/files but is not possible to set it using the argocd-apps chart. # What it does this PR - It adds this flag as a value of the chart for projects in argocd-apps # Proof ``` echo "projects: (⎈ |kind-hnc:hnc-system) - name: orka-extensibility namespace: cre-system description: orka-extensibility clusterResourceWhitelist: - group: '*' kind: '*' destinations: - namespace: '*' server: '*' orphanedResources: warn: true sourceRepos: - '*' roles: # A role which provides read-only access to all applications in the project - name: read-only description: Read-only privileges to orka-extensibility policies: - p, proj:orka-extensibility:read-only, applications, get, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applicationsets, get, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applications, sync, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applicationsets, sync, orka-extensibility/*, allow groups: - OrkA Team " > values-test.yaml helm template . -f values-test.yaml --- apiVersion: argoproj.io/v1alpha1 kind: AppProject metadata: name: orka-extensibility namespace: cre-system spec: permitOnlyProjectScopedClusters: false description: orka-extensibility sourceRepos: - '*' destinations: - namespace: '*' server: '*' clusterResourceWhitelist: - group: '*' kind: '*' orphanedResources: warn: true roles: - description: Read-only privileges to orka-extensibility groups: - OrkA Team name: read-only policies: - p, proj:orka-extensibility:read-only, applications, get, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applicationsets, get, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applications, sync, orka-extensibility/*, allow - p, proj:orka-extensibility:read-only, applicationsets, sync, orka-extensibility/*, allow ``` Change-Id: Ieddca7af228cbe0c4657fc907d078875daaa3eef Signed-off-by: fsero <fabian.selles@adevinta.com> |
||
---|---|---|
.github | ||
charts | ||
scripts | ||
.clomonitor.yml | ||
.editorconfig | ||
.gitignore | ||
CODE_OF_CONDUCT.md | ||
CODEOWNERS | ||
CONTRIBUTING.md | ||
EMERITUS.md | ||
LICENSE | ||
README.md | ||
SECURITY.md |
Argo Helm Charts
Argo Helm is a collection of community maintained charts for https://argoproj.github.io projects. The charts can be added using following command:
helm repo add argo https://argoproj.github.io/argo-helm
Contributing
We'd love to have you contribute! Please refer to our contribution guidelines for details.
Custom resource definitions
Some users would prefer to install the CRDs outside of the chart. You can disable the CRD installation of the main four charts (argo-cd, argo-workflows, argo-events, argo-rollouts) by using --set crds.install=false
when installing the chart.
Helm cannot upgrade custom resource definitions in the <chart>/crds
folder by design. Our CRDs have been moved to <chart>/templates
to address this design decision.
If you are using versions of a chart that have the CRDs in the root of the chart or have elected to manage the Argo Workflows CRDs outside of the chart, please use kubectl
to upgrade CRDs manually from templates/crds folder or via the manifests from the upstream project repo:
Example:
kubectl apply -k "https://github.com/argoproj/argo-cd/manifests/crds?ref=<appVersion>"
# Eg. version v2.4.9
kubectl apply -k "https://github.com/argoproj/argo-cd/manifests/crds?ref=v2.4.9"
Security Policy
Please refer to SECURITY.md for details on how to report security issues.
Changelog
Releases are managed independently for each helm chart, and changelogs are tracked on each release. Read more about this process here.