feat(argo-cd): Add spec for the status field of AppProject CRD. (#582)
* feat(argo-cd): Add spec for the status field of AppProject CRD. Signed-off-by: Vlad Losev <vladimir.losev@sage.com> * Bumps the chart version. Signed-off-by: Vlad Losev <vladimir.losev@sage.com>pull/586/head
parent
711518cc52
commit
014df64f3f
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: 1.8.4
|
appVersion: 1.8.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.14.5
|
version: 2.14.6
|
||||||
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:
|
||||||
|
|
|
@ -224,6 +224,29 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
type: object
|
type: object
|
||||||
|
status:
|
||||||
|
description: Status of the AppProject
|
||||||
|
properties:
|
||||||
|
jwtTokensByRole:
|
||||||
|
additionalProperties:
|
||||||
|
description: List of JWTToken objects for a given role
|
||||||
|
items:
|
||||||
|
description: Holds the issuedAt and expiresAt values of the token
|
||||||
|
properties:
|
||||||
|
exp:
|
||||||
|
description: The expiresAt value of a token
|
||||||
|
type: string
|
||||||
|
iat:
|
||||||
|
description: The issuedAt value of a token
|
||||||
|
type: string
|
||||||
|
id:
|
||||||
|
description: ID of the token
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
description: JWT Tokens issued for each of the roles in the project
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
required:
|
required:
|
||||||
- metadata
|
- metadata
|
||||||
- spec
|
- spec
|
||||||
|
|
Loading…
Reference in New Issue