feat(argo-cd): Update to Argo CD 2.13 (#2999)
This commit is contained in:
parent
baef862c36
commit
69f3eddca8
13 changed files with 1413 additions and 10 deletions
|
|
@ -244,6 +244,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to the
|
||||
helm template
|
||||
|
|
@ -265,6 +272,16 @@ spec:
|
|||
from failing when valueFiles do not exist locally by
|
||||
not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to template
|
||||
with. If left empty, defaults to the app's destination
|
||||
namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters which
|
||||
are passed to the helm template command upon manifest
|
||||
|
|
@ -322,6 +339,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -361,6 +385,11 @@ spec:
|
|||
definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether to
|
||||
apply common labels to resource selectors or not
|
||||
|
|
@ -580,6 +609,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to the
|
||||
helm template
|
||||
|
|
@ -601,6 +637,16 @@ spec:
|
|||
from failing when valueFiles do not exist locally
|
||||
by not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to template
|
||||
with. If left empty, defaults to the app's destination
|
||||
namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -659,6 +705,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -700,6 +753,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or not
|
||||
|
|
@ -1035,6 +1093,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to the helm
|
||||
template
|
||||
|
|
@ -1056,6 +1121,15 @@ spec:
|
|||
from failing when valueFiles do not exist locally by not
|
||||
appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to template
|
||||
with. If left empty, defaults to the app's destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters which
|
||||
are passed to the helm template command upon manifest generation
|
||||
|
|
@ -1112,6 +1186,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -1150,6 +1231,11 @@ spec:
|
|||
definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether to apply
|
||||
common labels to resource selectors or not
|
||||
|
|
@ -1362,6 +1448,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to the helm
|
||||
template
|
||||
|
|
@ -1383,6 +1476,16 @@ spec:
|
|||
from failing when valueFiles do not exist locally by not
|
||||
appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to template
|
||||
with. If left empty, defaults to the app's destination
|
||||
namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters which
|
||||
are passed to the helm template command upon manifest
|
||||
|
|
@ -1440,6 +1543,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -1479,6 +1589,11 @@ spec:
|
|||
definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether to apply
|
||||
common labels to resource selectors or not
|
||||
|
|
@ -1854,6 +1969,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to the
|
||||
helm template
|
||||
|
|
@ -1875,6 +1997,16 @@ spec:
|
|||
from failing when valueFiles do not exist locally
|
||||
by not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to template
|
||||
with. If left empty, defaults to the app's destination
|
||||
namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -1933,6 +2065,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -1974,6 +2113,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or not
|
||||
|
|
@ -2192,6 +2336,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to
|
||||
the helm template
|
||||
|
|
@ -2214,6 +2365,16 @@ spec:
|
|||
template from failing when valueFiles do not exist
|
||||
locally by not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to
|
||||
template with. If left empty, defaults to the app's
|
||||
destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -2274,6 +2435,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -2315,6 +2483,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or
|
||||
|
|
@ -2673,6 +2846,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters
|
||||
to the helm template
|
||||
|
|
@ -2697,6 +2877,16 @@ spec:
|
|||
not exist locally by not appending them to helm
|
||||
template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace
|
||||
to template with. If left empty, defaults to
|
||||
the app's destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command
|
||||
|
|
@ -2759,6 +2949,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -2801,6 +2998,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors
|
||||
|
|
@ -3030,6 +3232,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters
|
||||
to the helm template
|
||||
|
|
@ -3054,6 +3263,16 @@ spec:
|
|||
do not exist locally by not appending them
|
||||
to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace
|
||||
to template with. If left empty, defaults
|
||||
to the app's destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command
|
||||
|
|
@ -3118,6 +3337,13 @@ spec:
|
|||
description: Kustomize holds kustomize specific
|
||||
options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -3161,6 +3387,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies
|
||||
whether to apply common labels to resource
|
||||
|
|
@ -3510,6 +3741,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to
|
||||
the helm template
|
||||
|
|
@ -3532,6 +3770,16 @@ spec:
|
|||
template from failing when valueFiles do not exist
|
||||
locally by not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to
|
||||
template with. If left empty, defaults to the app's
|
||||
destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -3592,6 +3840,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -3633,6 +3888,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or
|
||||
|
|
@ -3858,6 +4118,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters
|
||||
to the helm template
|
||||
|
|
@ -3882,6 +4149,16 @@ spec:
|
|||
locally by not appending them to helm template
|
||||
--values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace
|
||||
to template with. If left empty, defaults to the
|
||||
app's destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command
|
||||
|
|
@ -3944,6 +4221,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -3986,6 +4270,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or
|
||||
|
|
@ -4358,6 +4647,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters to
|
||||
the helm template
|
||||
|
|
@ -4380,6 +4676,16 @@ spec:
|
|||
template from failing when valueFiles do not exist
|
||||
locally by not appending them to helm template --values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace to
|
||||
template with. If left empty, defaults to the app's
|
||||
destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command upon
|
||||
|
|
@ -4440,6 +4746,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -4481,6 +4794,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or
|
||||
|
|
@ -4706,6 +5024,13 @@ spec:
|
|||
helm:
|
||||
description: Helm holds helm specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
fileParameters:
|
||||
description: FileParameters are file parameters
|
||||
to the helm template
|
||||
|
|
@ -4730,6 +5055,16 @@ spec:
|
|||
locally by not appending them to helm template
|
||||
--values
|
||||
type: boolean
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace is an optional namespace
|
||||
to template with. If left empty, defaults to the
|
||||
app's destination namespace.
|
||||
type: string
|
||||
parameters:
|
||||
description: Parameters is a list of Helm parameters
|
||||
which are passed to the helm template command
|
||||
|
|
@ -4792,6 +5127,13 @@ spec:
|
|||
kustomize:
|
||||
description: Kustomize holds kustomize specific options
|
||||
properties:
|
||||
apiVersions:
|
||||
description: |-
|
||||
APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
|
||||
Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
commonAnnotations:
|
||||
additionalProperties:
|
||||
type: string
|
||||
|
|
@ -4834,6 +5176,11 @@ spec:
|
|||
image definition in the format [old_image_name=]<image_name>:<image_tag>
|
||||
type: string
|
||||
type: array
|
||||
kubeVersion:
|
||||
description: |-
|
||||
KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
|
||||
uses the Kubernetes version of the target cluster.
|
||||
type: string
|
||||
labelWithoutSelector:
|
||||
description: LabelWithoutSelector specifies whether
|
||||
to apply common labels to resource selectors or
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -96,6 +96,32 @@ spec:
|
|||
description:
|
||||
description: Description contains optional project description
|
||||
type: string
|
||||
destinationServiceAccounts:
|
||||
description: DestinationServiceAccounts holds information about the
|
||||
service accounts to be impersonated for the application sync operation
|
||||
for each destination.
|
||||
items:
|
||||
description: ApplicationDestinationServiceAccount holds information
|
||||
about the service account to be impersonated for the application
|
||||
sync operation.
|
||||
properties:
|
||||
defaultServiceAccount:
|
||||
description: DefaultServiceAccount to be used for impersonation
|
||||
during the sync operation
|
||||
type: string
|
||||
namespace:
|
||||
description: Namespace specifies the target namespace for the
|
||||
application's resources.
|
||||
type: string
|
||||
server:
|
||||
description: Server specifies the URL of the target cluster's
|
||||
Kubernetes control plane API.
|
||||
type: string
|
||||
required:
|
||||
- defaultServiceAccount
|
||||
- server
|
||||
type: object
|
||||
type: array
|
||||
destinations:
|
||||
description: Destinations contains list of destinations available
|
||||
for deployment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue