Merge branch 'main' into main
This commit is contained in:
commit
1c6768f327
4 changed files with 40 additions and 15 deletions
|
@ -80,21 +80,35 @@ Changes on a chart must be documented in a chart specific changelog in the `Char
|
||||||
|
|
||||||
A new `artifacthub.io/changes` needs to be written covering only the changes since the previous release.
|
A new `artifacthub.io/changes` needs to be written covering only the changes since the previous release.
|
||||||
|
|
||||||
Each change requires a new bullet point following the pattern `- "[{type}]: {description}"`. You can use the following template:
|
Each change requires a new bullet point following the pattern. See more information [Artifact Hub annotations in Helm Chart.yaml file](https://artifacthub.io/docs/topics/annotations/helm/).
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- kind: {type}
|
||||||
|
description: {description}
|
||||||
|
```
|
||||||
|
|
||||||
|
You can use the following template:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 3.4.1
|
version: 5.19.12
|
||||||
...
|
...
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Something New was added"
|
- kind: added
|
||||||
- "[Changed]: Changed Something within this chart"
|
description: Something New was added
|
||||||
- "[Changed]: Changed Something else within this chart"
|
- kind: changed
|
||||||
- "[Deprecated]: Something deprecated"
|
description: Changed Something within this chart
|
||||||
- "[Removed]: Something was removed"
|
- kind: changed
|
||||||
- "[Fixed]: Something was fixed"
|
description: Changed Something else within this chart
|
||||||
- "[Security]: Some Security Patch was included"
|
- kind: deprecated
|
||||||
|
description: Something deprecated
|
||||||
|
- kind: removed
|
||||||
|
description: Something was removed
|
||||||
|
- kind: fixed
|
||||||
|
description: Something was fixed
|
||||||
|
- kind: security
|
||||||
|
description: Some Security Patch was included
|
||||||
```
|
```
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
|
@ -3,7 +3,7 @@ appVersion: v2.5.9
|
||||||
kubeVersion: ">=1.22.0-0"
|
kubeVersion: ">=1.22.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.19.11
|
version: 5.19.12
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -23,4 +23,5 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Update Argo CD to v2.5.9"
|
- kind: fixed
|
||||||
|
description: Align changelog structure to show changelogs on Artifact Hub
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v1.7.4
|
appVersion: v1.7.5
|
||||||
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
description: A Helm chart for Argo Events, the event-driven workflow automation framework
|
||||||
name: argo-events
|
name: argo-events
|
||||||
version: 2.1.0
|
version: 2.1.1
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-events/assets/logo.png
|
icon: https://argoproj.github.io/argo-events/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
url: https://argoproj.github.io/
|
url: https://argoproj.github.io/
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Additional manifests to deploy within the chart"
|
- "[Changed]: Update Argo Events to v1.7.5"
|
||||||
|
|
|
@ -71,7 +71,6 @@ rules:
|
||||||
- pods
|
- pods
|
||||||
- pods/exec
|
- pods/exec
|
||||||
- configmaps
|
- configmaps
|
||||||
- secrets
|
|
||||||
- services
|
- services
|
||||||
- persistentvolumeclaims
|
- persistentvolumeclaims
|
||||||
verbs:
|
verbs:
|
||||||
|
@ -82,6 +81,17 @@ rules:
|
||||||
- update
|
- update
|
||||||
- patch
|
- patch
|
||||||
- delete
|
- delete
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- secrets
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- update
|
||||||
|
- patch
|
||||||
|
- delete
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- apps
|
- apps
|
||||||
resources:
|
resources:
|
||||||
|
|
Loading…
Reference in a new issue