Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/argo-cd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.9
version: 0.5.11

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
12 changes: 6 additions & 6 deletions charts/argo-cd/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# argo-cd

![Version: 0.5.9](https://img.shields.io/badge/Version-0.5.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1](https://img.shields.io/badge/AppVersion-1-informational?style=flat-square)
![Version: 0.5.11](https://img.shields.io/badge/Version-0.5.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1](https://img.shields.io/badge/AppVersion-1-informational?style=flat-square)

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.

Expand All @@ -24,12 +24,11 @@ Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
|-----|------|---------|-------------|
| apiserver | string | `"https://kubernetes.default.svc"` | |
| argo-cd.applicationSet.enabled | bool | `false` | |
| argo-cd.configs.params.controller.operation.processors | int | `10` | |
| argo-cd.configs.params.controller.repo.server.timeout.seconds | int | `60` | |
| argo-cd.configs.params.controller.self.heal.timeout.seconds | int | `5` | |
| argo-cd.configs.params.controller.status.processors | int | `20` | |
| argo-cd.configs.secret.createSecret | bool | `false` | |
| argo-cd.controller.args.appResyncPeriod | string | `"180"` | |
| argo-cd.controller.args.operationProcessors | string | `"10"` | |
| argo-cd.controller.args.repoServerTimeoutSeconds | string | `"60"` | |
| argo-cd.controller.args.selfHealTimeout | string | `"5"` | |
| argo-cd.controller.args.statusProcessors | string | `"20"` | |
| argo-cd.controller.clusterAdminAccess.enabled | bool | `false` | |
| argo-cd.controller.clusterRoleRules.enabled | bool | `false` | |
| argo-cd.controller.clusterRoleRules.rules | list | `[]` | |
Expand Down Expand Up @@ -65,6 +64,7 @@ Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
| argo-cd.repoServer.clusterRoleRules.enabled | bool | `false` | |
| argo-cd.repoServer.name | string | `"repo-server"` | |
| argo-cd.server.clusterAdminAccess.enabled | bool | `false` | |
| argo-cd.server.config.timeout.reconciliation | string | `"180s"` | |
| argo-cd.server.containerPort | int | `8080` | |
| argo-cd.server.env[0].name | string | `"KUBERNETES_NAMESPACE"` | |
| argo-cd.server.env[0].valueFrom.fieldRef.apiVersion | string | `"v1"` | |
Expand Down
23 changes: 17 additions & 6 deletions charts/argo-cd/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,6 @@ argo-cd:
imagePullPolicy: # IfNotPresent
replicas: 1
enableStatefulSet: true
args:
statusProcessors: "20"
operationProcessors: "10"
appResyncPeriod: "180"
selfHealTimeout: "5"
repoServerTimeoutSeconds: "60"
extraArgs:
- --namespace
- $(KUBERNETES_NAMESPACE)
Expand Down Expand Up @@ -99,6 +93,9 @@ argo-cd:
enabled: false

server:
config:
timeout:
reconciliation: 180s
name: server
replicas: 1
extraArgs:
Expand Down Expand Up @@ -130,6 +127,20 @@ argo-cd:
enabled: false

configs:
params:
controller:
status:
processors: 20
operation:
processors: 10
self:
heal:
timeout:
seconds: 5
repo:
server:
timeout:
seconds: 60
secret:
createSecret: false
#argocdServerAdminPassword: $2a$10$2sOBao8V5gvAuCjClGpX2egC73TkSGTrJOHwr7oCU4O4nuR8Ry/4u
Expand Down