Merge branch 'ocp-clusterrole' of github.com:johnkost/argo-helm into ocp-clusterrole
This commit is contained in:
commit
36c4854d7d
11 changed files with 95 additions and 6 deletions
|
@ -2,7 +2,7 @@ apiVersion: v1
|
||||||
appVersion: "1.5.4"
|
appVersion: "1.5.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.3.1
|
version: 2.3.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:
|
||||||
|
|
|
@ -233,6 +233,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for kustomize apps
|
for kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -517,6 +520,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources for
|
description: NameSuffix is a suffix appended to resources for
|
||||||
kustomize apps
|
kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -776,6 +782,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for kustomize apps
|
for kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -1049,6 +1058,10 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to
|
description: NameSuffix is a suffix appended to
|
||||||
resources for kustomize apps
|
resources for kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize
|
||||||
|
version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git
|
description: Path is a directory path within the Git
|
||||||
|
@ -1335,6 +1348,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for kustomize apps
|
for kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
@ -1608,6 +1624,9 @@ spec:
|
||||||
description: NameSuffix is a suffix appended to resources
|
description: NameSuffix is a suffix appended to resources
|
||||||
for kustomize apps
|
for kustomize apps
|
||||||
type: string
|
type: string
|
||||||
|
version:
|
||||||
|
description: Version contains optional Kustomize version
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
path:
|
path:
|
||||||
description: Path is a directory path within the Git repository
|
description: Path is a directory path within the Git repository
|
||||||
|
|
|
@ -95,6 +95,23 @@ spec:
|
||||||
- kind
|
- kind
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
|
namespaceResourceWhitelist:
|
||||||
|
description: NamespaceResourceWhitelist contains list of whitelisted
|
||||||
|
namespace level resources
|
||||||
|
items:
|
||||||
|
description: GroupKind specifies a Group and a Kind, but does not
|
||||||
|
force a version. This is useful for identifying concepts during
|
||||||
|
lookup stages without having partially valid types
|
||||||
|
properties:
|
||||||
|
group:
|
||||||
|
type: string
|
||||||
|
kind:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- group
|
||||||
|
- kind
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
orphanedResources:
|
orphanedResources:
|
||||||
description: OrphanedResources specifies if controller should monitor
|
description: OrphanedResources specifies if controller should monitor
|
||||||
orphaned resources of apps in this project
|
orphaned resources of apps in this project
|
||||||
|
@ -132,6 +149,8 @@ spec:
|
||||||
iat:
|
iat:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
required:
|
required:
|
||||||
- iat
|
- iat
|
||||||
type: object
|
type: object
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: "v2.7.6"
|
appVersion: v2.8.0
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
name: argo
|
name: argo
|
||||||
version: 0.8.6
|
version: 0.9.1
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
17
charts/argo/crds/cluster-workflow-template-crd.yaml
Normal file
17
charts/argo/crds/cluster-workflow-template-crd.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
name: clusterworkflowtemplates.argoproj.io
|
||||||
|
annotations:
|
||||||
|
helm.sh/hook: crd-install
|
||||||
|
helm.sh/hook-delete-policy: before-hook-creation
|
||||||
|
spec:
|
||||||
|
group: argoproj.io
|
||||||
|
version: v1alpha1
|
||||||
|
scope: Cluster
|
||||||
|
names:
|
||||||
|
kind: ClusterWorkflowTemplate
|
||||||
|
plural: clusterworkflowtemplates
|
||||||
|
shortNames:
|
||||||
|
- clusterwftmpl
|
||||||
|
- cwft
|
19
charts/argo/templates/cluster-workflow-template-crd.yaml
Normal file
19
charts/argo/templates/cluster-workflow-template-crd.yaml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{{- if .Values.installCRD }}
|
||||||
|
apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
name: clusterworkflowtemplates.argoproj.io
|
||||||
|
annotations:
|
||||||
|
helm.sh/hook: crd-install
|
||||||
|
helm.sh/hook-delete-policy: before-hook-creation
|
||||||
|
spec:
|
||||||
|
group: argoproj.io
|
||||||
|
version: v1alpha1
|
||||||
|
scope: Cluster
|
||||||
|
names:
|
||||||
|
kind: ClusterWorkflowTemplate
|
||||||
|
plural: clusterworkflowtemplates
|
||||||
|
shortNames:
|
||||||
|
- clusterwftmpl
|
||||||
|
- cwft
|
||||||
|
{{- end }}
|
|
@ -58,6 +58,7 @@ rules:
|
||||||
- workflows
|
- workflows
|
||||||
- workflowtemplates
|
- workflowtemplates
|
||||||
- cronworkflows
|
- cronworkflows
|
||||||
|
- clusterworkflowtemplates
|
||||||
verbs:
|
verbs:
|
||||||
- create
|
- create
|
||||||
- get
|
- get
|
||||||
|
|
|
@ -18,6 +18,8 @@ rules:
|
||||||
- workflowtemplates/finalizers
|
- workflowtemplates/finalizers
|
||||||
- cronworkflows
|
- cronworkflows
|
||||||
- cronworkflows/finalizers
|
- cronworkflows/finalizers
|
||||||
|
- clusterworkflowtemplates
|
||||||
|
- clusterworkflowtemplates/finalizers
|
||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
|
@ -42,6 +44,8 @@ rules:
|
||||||
- workflowtemplates/finalizers
|
- workflowtemplates/finalizers
|
||||||
- cronworkflows
|
- cronworkflows
|
||||||
- cronworkflows/finalizers
|
- cronworkflows/finalizers
|
||||||
|
- clusterworkflowtemplates
|
||||||
|
- clusterworkflowtemplates/finalizers
|
||||||
verbs:
|
verbs:
|
||||||
- create
|
- create
|
||||||
- delete
|
- delete
|
||||||
|
@ -71,6 +75,8 @@ rules:
|
||||||
- workflowtemplates/finalizers
|
- workflowtemplates/finalizers
|
||||||
- cronworkflows
|
- cronworkflows
|
||||||
- cronworkflows/finalizers
|
- cronworkflows/finalizers
|
||||||
|
- clusterworkflowtemplates
|
||||||
|
- clusterworkflowtemplates/finalizers
|
||||||
verbs:
|
verbs:
|
||||||
- create
|
- create
|
||||||
- delete
|
- delete
|
||||||
|
|
|
@ -55,6 +55,8 @@ rules:
|
||||||
resources:
|
resources:
|
||||||
- workflowtemplates
|
- workflowtemplates
|
||||||
- workflowtemplates/finalizers
|
- workflowtemplates/finalizers
|
||||||
|
- clusterworkflowtemplates
|
||||||
|
- clusterworkflowtemplates/finalizers
|
||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
|
|
|
@ -16,10 +16,14 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||||
{{- with .Values.executor.resources }}
|
{{- if or .Values.executor.resources .Values.executor.env }}
|
||||||
executor:
|
executor:
|
||||||
resources:
|
{{- with .Values.executor.resources }}
|
||||||
{{- toYaml . | nindent 8 }}
|
resources: {{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.executor.env }}
|
||||||
|
env: {{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
artifactRepository:
|
artifactRepository:
|
||||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||||
|
|
|
@ -111,6 +111,8 @@ executor:
|
||||||
# Overrides .images.tag if defined.
|
# Overrides .images.tag if defined.
|
||||||
tag: ""
|
tag: ""
|
||||||
resources: {}
|
resources: {}
|
||||||
|
# Adds environment variables for the executor.
|
||||||
|
env: {}
|
||||||
|
|
||||||
server:
|
server:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
Loading…
Reference in a new issue