Merge remote-tracking branch 'upstream/master' into argocd-helm-v1.0.0
This commit is contained in:
commit
241a3da552
7 changed files with 18 additions and 8 deletions
10
CODEOWNERS
Normal file
10
CODEOWNERS
Normal file
|
@ -0,0 +1,10 @@
|
|||
# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners
|
||||
|
||||
# Argo CD
|
||||
/charts/argo-cd @seanson
|
||||
|
||||
# Argo Events
|
||||
/charts/argo-events @jbehling
|
||||
|
||||
# Argo Workflows
|
||||
/charts/argo @benjaminws
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v1
|
||||
description: A Helm chart to install Argo-Events in k8s Cluster
|
||||
name: argo-events
|
||||
version: 0.5.0
|
||||
version: 0.5.1
|
||||
keywords:
|
||||
- argo-events
|
||||
- sensor-controller
|
||||
|
|
|
@ -8,12 +8,12 @@ roleRef:
|
|||
name: argo-events-role
|
||||
subjects:
|
||||
- kind: ServiceAccount
|
||||
name: argo-events-sa
|
||||
name: {{ .Values.serviceAccount }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
{{- if .Values.additionalSaNamespaces }}
|
||||
{{- range $namespace := .Values.additionalSaNamespaces }}
|
||||
- kind: ServiceAccount
|
||||
name: argo-events-sa
|
||||
name: {{ .Values.serviceAccount }}
|
||||
namespace: {{ $namespace }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: argo-events-sa
|
||||
name: {{ .Values.serviceAccount }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
{{- if .Values.additionalSaNamespaces }}
|
||||
{{- range $namespace := .Values.additionalSaNamespaces }}
|
||||
|
@ -11,7 +11,7 @@ metadata:
|
|||
apiVersion: v1
|
||||
kind: ServiceAccount
|
||||
metadata:
|
||||
name: argo-events-sa
|
||||
name: {{ .Values.serviceAccount }}
|
||||
namespace: {{ $namespace }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -2,5 +2,5 @@ apiVersion: v1
|
|||
appVersion: "v2.4.2"
|
||||
description: A Helm chart for Argo Workflows
|
||||
name: argo
|
||||
version: 0.6.1
|
||||
version: 0.6.2
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{- if .installCRD }}
|
||||
{{- if .Values.installCRD }}
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{- if .installCRD }}
|
||||
{{- if .Values.installCRD }}
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
|
|
Loading…
Reference in a new issue