Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/argo-workflows/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: v3.7.10
appVersion: v4.0.1
name: argo-workflows
description: A Helm chart for Argo Workflows
type: application
version: 0.47.4
version: 0.47.5
icon: https://argo-workflows.readthedocs.io/en/stable/assets/logo.png
home: https://github.com/argoproj/argo-helm
sources:
Expand All @@ -17,4 +17,4 @@ annotations:
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: changed
description: Bump argo-workflows to v3.7.10
description: Bump argo-workflows to v4.0.1
15,332 changes: 15,218 additions & 114 deletions charts/argo-workflows/files/crds/full/argoproj.io_clusterworkflowtemplates.yaml

Large diffs are not rendered by default.

15,935 changes: 15,819 additions & 116 deletions charts/argo-workflows/files/crds/full/argoproj.io_cronworkflows.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,30 @@ spec:
- name: v1alpha1
schema:
openAPIV3Schema:
description: WorkflowArtifactGCTask specifies the Artifacts that need to be
deleted as well as the status of deletion
properties:
apiVersion:
description: |-
APIVersion defines the versioned schema of this representation of an object.
Servers should convert recognized schemas to the latest internal value, and
may reject unrecognized values.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
type: string
kind:
description: |-
Kind is a string value representing the REST resource this object represents.
Servers may infer this from the endpoint the client submits requests to.
Cannot be updated.
In CamelCase.
More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
type: string
metadata:
type: object
spec:
description: |-
ArtifactGCSpec specifies the Artifacts that need to be deleted.
All nested field descriptions have been dropped due to Kubernetes size limitations.
properties:
artifactsByNode:
additionalProperties:
Expand Down Expand Up @@ -433,6 +449,20 @@ spec:
required:
- key
type: object
plugin:
properties:
configuration:
type: string
connectionTimeoutSeconds:
format: int32
type: integer
key:
type: string
name:
type: string
required:
- key
type: object
raw:
properties:
data:
Expand Down Expand Up @@ -935,8 +965,11 @@ spec:
type: object
mode:
format: int32
maximum: 511
minimum: 0
type: integer
name:
pattern: ^[-a-zA-Z0-9_{}.]+$
type: string
optional:
type: boolean
Expand Down Expand Up @@ -994,6 +1027,20 @@ spec:
type: object
path:
type: string
plugin:
properties:
configuration:
type: string
connectionTimeoutSeconds:
format: int32
type: integer
key:
type: string
name:
type: string
required:
- key
type: object
raw:
properties:
data:
Expand Down Expand Up @@ -1109,24 +1156,36 @@ spec:
type: object
type: object
status:
description: ArtifactGCStatus describes the result of the deletion
properties:
artifactResultsByNode:
additionalProperties:
description: ArtifactResultNodeStatus describes the result of the
deletion on a given node
properties:
artifactResults:
additionalProperties:
description: ArtifactResult describes the result of attempting
to delete a given Artifact
properties:
error:
description: Error is an optional error message which
should be set if Success==false
type: string
name:
description: Name is the name of the Artifact
type: string
success:
description: Success describes whether the deletion succeeded
type: boolean
required:
- name
type: object
description: ArtifactResults maps Artifact name to result of
the deletion
type: object
type: object
description: ArtifactResultsByNode maps Node name to result
type: object
type: object
required:
Expand Down
Loading
Loading