-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from devtron-labs/workflow-IMDSv2
feat: added support for IMDSv2 version in argo-workflow chart
- Loading branch information
Showing
12 changed files
with
860 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
name: argo-workflow | ||
description: Chart to deploy argo-workflow | ||
version: 0.1.4 | ||
version: 0.1.5 | ||
apiVersion: v1 | ||
maintainers: | ||
- email: [email protected] | ||
name: Pawan | ||
- email: [email protected] | ||
name: Devops-Team DEVTRON |
38 changes: 38 additions & 0 deletions
38
charts/argo-workflow/crds/clusterworkflowtemplates-crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterworkflowtemplates.argoproj.io | ||
spec: | ||
conversion: | ||
strategy: None | ||
group: argoproj.io | ||
names: | ||
kind: ClusterWorkflowTemplate | ||
listKind: ClusterWorkflowTemplateList | ||
plural: clusterworkflowtemplates | ||
shortNames: | ||
- clusterwftmpl | ||
- cwft | ||
singular: clusterworkflowtemplate | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
required: | ||
- metadata | ||
- spec | ||
type: object | ||
served: true | ||
storage: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: cronworkflows.argoproj.io | ||
spec: | ||
conversion: | ||
strategy: None | ||
group: argoproj.io | ||
names: | ||
kind: CronWorkflow | ||
listKind: CronWorkflowList | ||
plural: cronworkflows | ||
shortNames: | ||
- cwf | ||
- cronwf | ||
singular: cronworkflow | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
status: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
required: | ||
- metadata | ||
- spec | ||
type: object | ||
served: true | ||
storage: true |
43 changes: 43 additions & 0 deletions
43
charts/argo-workflow/crds/workflowartifactgctasks-crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: workflowartifactgctasks.argoproj.io | ||
spec: | ||
conversion: | ||
strategy: None | ||
group: argoproj.io | ||
names: | ||
kind: WorkflowArtifactGCTask | ||
listKind: WorkflowArtifactGCTaskList | ||
plural: workflowartifactgctasks | ||
shortNames: | ||
- wfat | ||
singular: workflowartifactgctask | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
status: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
required: | ||
- metadata | ||
- spec | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: workfloweventbindings.argoproj.io | ||
spec: | ||
conversion: | ||
strategy: None | ||
group: argoproj.io | ||
names: | ||
kind: WorkflowEventBinding | ||
listKind: WorkflowEventBindingList | ||
plural: workfloweventbindings | ||
shortNames: | ||
- wfeb | ||
singular: workfloweventbinding | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
type: object | ||
x-kubernetes-map-type: atomic | ||
x-kubernetes-preserve-unknown-fields: true | ||
required: | ||
- metadata | ||
- spec | ||
type: object | ||
served: true | ||
storage: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.