fix: update CRDs (#346)
This commit is contained in:
parent
eea5b76e2a
commit
8f3bfae1fb
3 changed files with 39 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.5.4"
|
appVersion: "1.5.4"
|
||||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 2.3.1
|
version: 2.3.2
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -233,6 +233,9 @@ 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
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -517,6 +520,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources for
|
description: NameSuffix is a suffix appended to resources for
|
||||||
kustomize apps
|
kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -776,6 +782,9 @@ 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
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -1049,6 +1058,10 @@ 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
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize
|
||||||
|
version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git
|
description: Path is a directory path within the Git
|
||||||
|
@ -1335,6 +1348,9 @@ 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
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -1608,6 +1624,9 @@ 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
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
|
|
@ -95,6 +95,23 @@ spec:
|
||||||
- kind
|
- kind
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
|
namespaceResourceWhitelist:
|
||||||
|
description: NamespaceResourceWhitelist contains list of whitelisted
|
||||||
|
namespace level resources
|
||||||
|
items:
|
||||||
|
description: GroupKind specifies a Group and a Kind, but does not
|
||||||
|
force a version. This is useful for identifying concepts during
|
||||||
|
lookup stages without having partially valid types
|
||||||
|
properties:
|
||||||
|
group:
|
||||||
|
type: string
|
||||||
|
kind:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- group
|
||||||
|
- kind
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
orphanedResources:
|
orphanedResources:
|
||||||
description: OrphanedResources specifies if controller should monitor
|
description: OrphanedResources specifies if controller should monitor
|
||||||
orphaned resources of apps in this project
|
orphaned resources of apps in this project
|
||||||
|
@ -132,6 +149,8 @@ spec:
|
||||||
iat:
|
iat:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
required:
|
required:
|
||||||
- iat
|
- iat
|
||||||
type: object
|
type: object
|
||||||
|
|
Loading…
Reference in a new issue