fix readme
Signed-off-by: Michele Sacchetti <michele.sacchetti@aroundthecode.org>
This commit is contained in:
parent
f859383a2b
commit
4a3d1b769a
3 changed files with 12 additions and 3 deletions
|
@ -26,7 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: changed
|
|
||||||
description: Use new Argo CD extension mechanism
|
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Optionally map argocd-repo-server emptydir volumes on custom volumes
|
description: Optionally map argocd-repo-server emptydir volumes on custom volumes
|
||||||
|
|
|
@ -4,6 +4,7 @@ A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kub
|
||||||
|
|
||||||
Source code can be found here:
|
Source code can be found here:
|
||||||
|
|
||||||
|
|
||||||
* <https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd>
|
* <https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd>
|
||||||
* <https://github.com/argoproj/argo-cd>
|
* <https://github.com/argoproj/argo-cd>
|
||||||
|
|
||||||
|
@ -105,6 +106,9 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
|
|
||||||
Highlighted versions provide information about additional steps that should be performed by user when upgrading to newer version.
|
Highlighted versions provide information about additional steps that should be performed by user when upgrading to newer version.
|
||||||
|
|
||||||
|
### 5.53.0
|
||||||
|
Argocd-repo-server can now optionally use Persistent Volumes for its mountpoints instead of only emptydir()
|
||||||
|
|
||||||
### 5.52.0
|
### 5.52.0
|
||||||
Because [Argo CD Extensions] is now deprecated and no further changes will be made, we switched to [Argo CD Extension Installer], adding an Argo CD Extension Installer to init-container in the Argo CD API server.
|
Because [Argo CD Extensions] is now deprecated and no further changes will be made, we switched to [Argo CD Extension Installer], adding an Argo CD Extension Installer to init-container in the Argo CD API server.
|
||||||
If you used old mechanism, please move to new mechanism. For more details, please refer `.Values.server.extensions` in values.yaml.
|
If you used old mechanism, please move to new mechanism. For more details, please refer `.Values.server.extensions` in values.yaml.
|
||||||
|
@ -114,6 +118,7 @@ This version supports Kubernetes version `>=1.23.0-0`. The current supported ver
|
||||||
|
|
||||||
Please see more information about EoL: [Amazon EKS EoL][EKS EoL].
|
Please see more information about EoL: [Amazon EKS EoL][EKS EoL].
|
||||||
|
|
||||||
|
|
||||||
### 5.31.0
|
### 5.31.0
|
||||||
The manifests are now using [`tini` as entrypoint][tini], instead of `entrypoint.sh`. Until Argo CD v2.8, `entrypoint.sh` is retained for upgrade compatibility.
|
The manifests are now using [`tini` as entrypoint][tini], instead of `entrypoint.sh`. Until Argo CD v2.8, `entrypoint.sh` is retained for upgrade compatibility.
|
||||||
This means that the deployment manifests have to be updated after upgrading to Argo CD v2.7, and before upgrading to Argo CD v2.8 later.
|
This means that the deployment manifests have to be updated after upgrading to Argo CD v2.7, and before upgrading to Argo CD v2.8 later.
|
||||||
|
@ -339,6 +344,7 @@ kubeVersionOverride: "1.18.0"
|
||||||
|
|
||||||
Then you should no longer encounter this issue.
|
Then you should no longer encounter this issue.
|
||||||
|
|
||||||
|
|
||||||
### 3.0.0 and above
|
### 3.0.0 and above
|
||||||
|
|
||||||
Helm apiVersion switched to `v2`. Requires Helm `3.0.0` or above to install. [Read More](https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/) on how to migrate your release from Helm 2 to Helm 3.
|
Helm apiVersion switched to `v2`. Requires Helm `3.0.0` or above to install. [Read More](https://helm.sh/blog/migrate-from-helm-v2-to-helm-v3/) on how to migrate your release from Helm 2 to Helm 3.
|
||||||
|
@ -609,6 +615,7 @@ NAME: my-release
|
||||||
| repoServer.dnsPolicy | string | `"ClusterFirst"` | Alternative DNS policy for Repo server pods |
|
| repoServer.dnsPolicy | string | `"ClusterFirst"` | Alternative DNS policy for Repo server pods |
|
||||||
| repoServer.env | list | `[]` | Environment variables to pass to repo server |
|
| repoServer.env | list | `[]` | Environment variables to pass to repo server |
|
||||||
| repoServer.envFrom | list | `[]` (See [values.yaml]) | envFrom to pass to repo server |
|
| repoServer.envFrom | list | `[]` (See [values.yaml]) | envFrom to pass to repo server |
|
||||||
|
| repoServer.existingVolumes | object | `{}` | Volumes to be used in replacement of emptydir on default volumes |
|
||||||
| repoServer.extraArgs | list | `[]` | Additional command line arguments to pass to repo server |
|
| repoServer.extraArgs | list | `[]` | Additional command line arguments to pass to repo server |
|
||||||
| repoServer.extraContainers | list | `[]` | Additional containers to be added to the repo server pod |
|
| repoServer.extraContainers | list | `[]` | Additional containers to be added to the repo server pod |
|
||||||
| repoServer.hostNetwork | bool | `false` | Host Network for Repo server pods |
|
| repoServer.hostNetwork | bool | `false` | Host Network for Repo server pods |
|
||||||
|
|
|
@ -104,6 +104,10 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
|
|
||||||
Highlighted versions provide information about additional steps that should be performed by user when upgrading to newer version.
|
Highlighted versions provide information about additional steps that should be performed by user when upgrading to newer version.
|
||||||
|
|
||||||
|
### 5.53.0
|
||||||
|
Argocd-repo-server can now optionally use Persistent Volumes for its mountpoints instead of only emptydir()
|
||||||
|
|
||||||
|
|
||||||
### 5.52.0
|
### 5.52.0
|
||||||
Because [Argo CD Extensions] is now deprecated and no further changes will be made, we switched to [Argo CD Extension Installer], adding an Argo CD Extension Installer to init-container in the Argo CD API server.
|
Because [Argo CD Extensions] is now deprecated and no further changes will be made, we switched to [Argo CD Extension Installer], adding an Argo CD Extension Installer to init-container in the Argo CD API server.
|
||||||
If you used old mechanism, please move to new mechanism. For more details, please refer `.Values.server.extensions` in values.yaml.
|
If you used old mechanism, please move to new mechanism. For more details, please refer `.Values.server.extensions` in values.yaml.
|
||||||
|
|
Loading…
Reference in a new issue