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
|
||||
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 2.11.1
|
||||
version: 2.11.2
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
keywords:
|
||||
|
|
|
@ -8,17 +8,6 @@ metadata:
|
|||
annotations:
|
||||
helm.sh/hook: crd-install
|
||||
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
|
||||
names:
|
||||
kind: Application
|
||||
|
@ -29,8 +18,23 @@ spec:
|
|||
- apps
|
||||
singular: application
|
||||
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: {}
|
||||
validation:
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
description: Application is a definition of Application resource.
|
||||
properties:
|
||||
|
@ -1650,8 +1654,3 @@ spec:
|
|||
- metadata
|
||||
- spec
|
||||
type: object
|
||||
version: v1alpha1
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
storage: true
|
||||
|
|
|
@ -18,7 +18,11 @@ spec:
|
|||
- appprojs
|
||||
singular: appproject
|
||||
scope: Namespaced
|
||||
validation:
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
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)'
|
||||
properties:
|
||||
|
@ -224,8 +228,3 @@ spec:
|
|||
- metadata
|
||||
- spec
|
||||
type: object
|
||||
version: v1alpha1
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
served: true
|
||||
storage: true
|
||||
|
|
Loading…
Reference in a new issue