feat(argo-cd): Upgrade Argo CD to v2.7.0 (#1989)
* chore(argo-cd): Upgrade Argo CD to v2.7.0 Signed-off-by: yu-croco <yu.croco@gmail.com> * fix(argo-cd): collect syntax Signed-off-by: yu-croco <yu.croco@gmail.com>
This commit is contained in:
parent
bc4e00b836
commit
5f807d903b
3 changed files with 1148 additions and 4 deletions
|
@ -1,9 +1,9 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.6.7
|
appVersion: v2.7.0
|
||||||
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.29.1
|
version: 5.30.0
|
||||||
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,5 +23,5 @@ dependencies:
|
||||||
condition: redis-ha.enabled
|
condition: redis-ha.enabled
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: changed
|
||||||
description: Namespace field for some namespaced resources needs to be evaluated via helm root scope
|
description: Upgrade Argo CD to v2.7.0
|
||||||
|
|
|
@ -310,6 +310,10 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -341,6 +345,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -572,6 +599,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation
|
||||||
|
values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -604,6 +636,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -950,6 +1005,10 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional annotations
|
description: CommonAnnotations is a list of additional annotations
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether to
|
||||||
|
apply env variables substitution for annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -980,6 +1039,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize adds
|
||||||
|
to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas override
|
||||||
|
specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize to
|
description: Version controls which version of Kustomize to
|
||||||
use for rendering manifests
|
use for rendering manifests
|
||||||
|
@ -1203,6 +1285,10 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional annotations
|
description: CommonAnnotations is a list of additional annotations
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -1234,6 +1320,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas override
|
||||||
|
specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -1604,6 +1713,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation
|
||||||
|
values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -1636,6 +1750,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -1869,6 +2006,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation
|
||||||
|
values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -1901,6 +2043,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -2279,6 +2444,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies
|
||||||
|
whether to apply env variables substitution
|
||||||
|
for annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -2311,6 +2481,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to
|
description: NameSuffix is a suffix appended to
|
||||||
resources for Kustomize apps
|
resources for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that
|
||||||
|
Kustomize adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of
|
description: Version controls which version of
|
||||||
Kustomize to use for rendering manifests
|
Kustomize to use for rendering manifests
|
||||||
|
@ -2562,6 +2755,11 @@ spec:
|
||||||
additional annotations to add to rendered
|
additional annotations to add to rendered
|
||||||
manifests
|
manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies
|
||||||
|
whether to apply env variables substitution
|
||||||
|
for annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -2594,6 +2792,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended
|
description: NameSuffix is a suffix appended
|
||||||
to resources for Kustomize apps
|
to resources for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that
|
||||||
|
Kustomize adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize
|
||||||
|
Replicas override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version
|
description: Version controls which version
|
||||||
of Kustomize to use for rendering manifests
|
of Kustomize to use for rendering manifests
|
||||||
|
@ -2945,6 +3166,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation
|
||||||
|
values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -2977,6 +3203,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -3221,6 +3470,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies
|
||||||
|
whether to apply env variables substitution for
|
||||||
|
annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -3253,6 +3507,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to
|
description: NameSuffix is a suffix appended to
|
||||||
resources for Kustomize apps
|
resources for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -3602,6 +3879,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies whether
|
||||||
|
to apply env variables substitution for annotation
|
||||||
|
values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -3634,6 +3916,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for Kustomize apps
|
for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
@ -3878,6 +4183,11 @@ spec:
|
||||||
description: CommonAnnotations is a list of additional
|
description: CommonAnnotations is a list of additional
|
||||||
annotations to add to rendered manifests
|
annotations to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
commonAnnotationsEnvsubst:
|
||||||
|
description: CommonAnnotationsEnvsubst specifies
|
||||||
|
whether to apply env variables substitution for
|
||||||
|
annotation values
|
||||||
|
type: boolean
|
||||||
commonLabels:
|
commonLabels:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
|
@ -3910,6 +4220,29 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to
|
description: NameSuffix is a suffix appended to
|
||||||
resources for Kustomize apps
|
resources for Kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
namespace:
|
||||||
|
description: Namespace sets the namespace that Kustomize
|
||||||
|
adds to all resources
|
||||||
|
type: string
|
||||||
|
replicas:
|
||||||
|
description: Replicas is a list of Kustomize Replicas
|
||||||
|
override specifications
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
count:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Number of replicas
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of Deployment or StatefulSet
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- count
|
||||||
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
version:
|
version:
|
||||||
description: Version controls which version of Kustomize
|
description: Version controls which version of Kustomize
|
||||||
to use for rendering manifests
|
to use for rendering manifests
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue