fix(argo-cd): Fixes CRD schema. (#545)
* fix(argo-cd): Fixes CRD schema. Signed-off-by: Vlad Losev <vladimir.losev@sage.com> * Bumps chart version. Signed-off-by: Vlad Losev <vladimir.losev@sage.com>
This commit is contained in:
parent
e8ca7ce63b
commit
b7679a8968
3 changed files with 1454 additions and 1456 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: 1.7.6
|
appVersion: 1.7.6
|
||||||
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.11.1
|
version: 2.11.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:
|
||||||
|
|
|
@ -8,17 +8,6 @@ metadata:
|
||||||
annotations:
|
annotations:
|
||||||
helm.sh/hook: crd-install
|
helm.sh/hook: crd-install
|
||||||
spec:
|
spec:
|
||||||
additionalPrinterColumns:
|
|
||||||
- JSONPath: .status.sync.status
|
|
||||||
name: Sync Status
|
|
||||||
type: string
|
|
||||||
- JSONPath: .status.health.status
|
|
||||||
name: Health Status
|
|
||||||
type: string
|
|
||||||
- JSONPath: .status.sync.revision
|
|
||||||
name: Revision
|
|
||||||
priority: 10
|
|
||||||
type: string
|
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
names:
|
names:
|
||||||
kind: Application
|
kind: Application
|
||||||
|
@ -29,8 +18,23 @@ spec:
|
||||||
- apps
|
- apps
|
||||||
singular: application
|
singular: application
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
|
versions:
|
||||||
|
- name: v1alpha1
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
additionalPrinterColumns:
|
||||||
|
- jsonPath: .status.sync.status
|
||||||
|
name: Sync Status
|
||||||
|
type: string
|
||||||
|
- jsonPath: .status.health.status
|
||||||
|
name: Health Status
|
||||||
|
type: string
|
||||||
|
- jsonPath: .status.sync.revision
|
||||||
|
name: Revision
|
||||||
|
priority: 10
|
||||||
|
type: string
|
||||||
subresources: {}
|
subresources: {}
|
||||||
validation:
|
schema:
|
||||||
openAPIV3Schema:
|
openAPIV3Schema:
|
||||||
description: Application is a definition of Application resource.
|
description: Application is a definition of Application resource.
|
||||||
properties:
|
properties:
|
||||||
|
@ -1650,8 +1654,3 @@ spec:
|
||||||
- metadata
|
- metadata
|
||||||
- spec
|
- spec
|
||||||
type: object
|
type: object
|
||||||
version: v1alpha1
|
|
||||||
versions:
|
|
||||||
- name: v1alpha1
|
|
||||||
served: true
|
|
||||||
storage: true
|
|
||||||
|
|
|
@ -18,7 +18,11 @@ spec:
|
||||||
- appprojs
|
- appprojs
|
||||||
singular: appproject
|
singular: appproject
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
validation:
|
versions:
|
||||||
|
- name: v1alpha1
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
schema:
|
||||||
openAPIV3Schema:
|
openAPIV3Schema:
|
||||||
description: 'AppProject provides a logical grouping of applications, providing controls for: * where the apps may deploy to (cluster whitelist) * what may be deployed (repository whitelist, resource whitelist/blacklist) * who can access these applications (roles, OIDC group claims bindings) * and what they can do (RBAC policies) * automation access to these roles (JWT tokens)'
|
description: 'AppProject provides a logical grouping of applications, providing controls for: * where the apps may deploy to (cluster whitelist) * what may be deployed (repository whitelist, resource whitelist/blacklist) * who can access these applications (roles, OIDC group claims bindings) * and what they can do (RBAC policies) * automation access to these roles (JWT tokens)'
|
||||||
properties:
|
properties:
|
||||||
|
@ -224,8 +228,3 @@ spec:
|
||||||
- metadata
|
- metadata
|
||||||
- spec
|
- spec
|
||||||
type: object
|
type: object
|
||||||
version: v1alpha1
|
|
||||||
versions:
|
|
||||||
- name: v1alpha1
|
|
||||||
served: true
|
|
||||||
storage: true
|
|
||||||
|
|
Loading…
Reference in a new issue