feat(argo-cd): Update to use v2.3.1 release (#1162)
* feat(argo-cd): Update to use v2.3.1 release Signed-off-by: mikeeq <miotk.mikolaj@gmail.com> * Move applicationSet.* and notifications.* to a dedicated location Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Fix typo in deployment.yaml Signed-off-by: mikeeq <miotk.mikolaj@gmail.com> * Fix notifications bot deployment Signed-off-by: mikeeq <miotk.mikolaj@gmail.com> * Update README.md Signed-off-by: mikeeq <miotk.mikolaj@gmail.com> * Update README.md and fix slack bot image Signed-off-by: mikeeq <miotk.mikolaj@gmail.com> * Drop nameOverride for new components as we use the global one Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Drop "applicationSet.args.namespace" and "applicationSet.args.argocdRepoServer" Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Consistent use of volumes (gpg, tls, knownHosts, extra) Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Bump major chart version and place a note in teh Upgrading section Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Change "enableStatefulSet: true" as we are in a major release now Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Drop PSP of applicationSet Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Fix applicationset webhook-ingress Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Drop unused variables in values.yaml and README Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Also set namespace and argocd-repo-server args on notification-controller Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Consistent use of "Argo CD" instead of "ArgoCD" Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> * Trigger CI Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
c8f0471bd0
commit
32a06059c3
28 changed files with 8325 additions and 64 deletions
|
|
@ -233,6 +233,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents helm template
|
||||
from failing when valueFiles do not exist locally by
|
||||
not appending them to helm template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters which
|
||||
are passed to the helm template command upon manifest
|
||||
|
|
@ -261,6 +266,10 @@ spec:
|
|||
description: ReleaseName is the Helm release name to use.
|
||||
If omitted it will use the application name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition
|
||||
installation step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value files
|
||||
to use when generating a template
|
||||
|
|
@ -598,6 +607,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents helm template
|
||||
from failing when valueFiles do not exist locally by not
|
||||
appending them to helm template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters which
|
||||
are passed to the helm template command upon manifest generation
|
||||
|
|
@ -625,6 +639,10 @@ spec:
|
|||
description: ReleaseName is the Helm release name to use.
|
||||
If omitted it will use the application name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition installation
|
||||
step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value files to
|
||||
use when generating a template
|
||||
|
|
@ -966,6 +984,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents helm template
|
||||
from failing when valueFiles do not exist locally
|
||||
by not appending them to helm template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -995,6 +1018,10 @@ spec:
|
|||
description: ReleaseName is the Helm release name to
|
||||
use. If omitted it will use the application name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition
|
||||
installation step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value files
|
||||
to use when generating a template
|
||||
|
|
@ -1349,6 +1376,12 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents
|
||||
helm template from failing when valueFiles do
|
||||
not exist locally by not appending them to helm
|
||||
template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command
|
||||
|
|
@ -1381,6 +1414,10 @@ spec:
|
|||
to use. If omitted it will use the application
|
||||
name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition
|
||||
installation step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value
|
||||
files to use when generating a template
|
||||
|
|
@ -1714,6 +1751,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents helm
|
||||
template from failing when valueFiles do not exist
|
||||
locally by not appending them to helm template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -1744,6 +1786,10 @@ spec:
|
|||
description: ReleaseName is the Helm release name
|
||||
to use. If omitted it will use the application name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition
|
||||
installation step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value files
|
||||
to use when generating a template
|
||||
|
|
@ -2065,6 +2111,11 @@ spec:
|
|||
type: string
|
||||
type: object
|
||||
type: array
|
||||
ignoreMissingValueFiles:
|
||||
description: IgnoreMissingValueFiles prevents helm
|
||||
template from failing when valueFiles do not exist
|
||||
locally by not appending them to helm template --values
|
||||
type: boolean
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -2095,6 +2146,10 @@ spec:
|
|||
description: ReleaseName is the Helm release name
|
||||
to use. If omitted it will use the application name
|
||||
type: string
|
||||
skipCrds:
|
||||
description: SkipCrds skips custom resource definition
|
||||
installation step (Helm's --skip-crds)
|
||||
type: boolean
|
||||
valueFiles:
|
||||
description: ValuesFiles is a list of Helm value files
|
||||
to use when generating a template
|
||||
|
|
|
|||
6502
charts/argo-cd/crds/crd-applicationset.yaml
Normal file
6502
charts/argo-cd/crds/crd-applicationset.yaml
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue