Update argo events to 0.10 (#132)

This commit is contained in:
Andrew Suderman 2019-10-22 14:37:58 -06:00 committed by Alex Collins
parent b2e9de6019
commit 04d7d2c390
5 changed files with 19 additions and 8 deletions

View file

@ -1,7 +1,7 @@
apiVersion: v1 apiVersion: v1
description: A Helm chart to install Argo-Events in k8s Cluster description: A Helm chart to install Argo-Events in k8s Cluster
name: argo-events name: argo-events
version: 0.4.3 version: 0.5.0
keywords: keywords:
- argo-events - argo-events
- sensor-controller - sensor-controller
@ -11,5 +11,5 @@ sources:
maintainers: maintainers:
- name: Vaibhav Page - name: Vaibhav Page
- name: Matt Magaldi - name: Matt Magaldi
appVersion: 0.9.2 appVersion: 0.10
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png

View file

@ -1,8 +1,8 @@
# Argo-Events Chart # Argo-Events Chart
This is a **community maintained** chart. It installs the [argo-events](https://github.com/argoproj/argo-events) application. This application comes packaged with: This is a **community maintained** chart. It installs the [argo-events](https://github.com/argoproj/argo-events) application. This application comes packaged with:
- Sensor Custom Resource Definition - Sensor Custom Resource Definition (See CRD Notes)
- Gateway Custom Resource Definition - Gateway Custom Resource Definition (See CRD Notes)
- Sensor Controller Deployment - Sensor Controller Deployment
- Sensor Controller ConfigMap - Sensor Controller ConfigMap
- Gateway Controller Deployment - Gateway Controller Deployment
@ -10,3 +10,7 @@ This is a **community maintained** chart. It installs the [argo-events](https://
- Service Account - Service Account
- Cluster Roles - Cluster Roles
- Cluster Role Bindings - Cluster Role Bindings
## Notes on CRD Installation
Some users would prefer to install the CRDs _outside_ of the chart. You can disable the CRD installation of this chart by using `--set installCRD=false` when installing the chart.

View file

@ -1,3 +1,4 @@
{{- if .Values.installCRD }}
# Define a "gateway" custom resource definition # Define a "gateway" custom resource definition
apiVersion: apiextensions.k8s.io/v1beta1 apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition kind: CustomResourceDefinition
@ -12,3 +13,4 @@ spec:
singular: gateway singular: gateway
scope: Namespaced scope: Namespaced
version: v1alpha1 version: v1alpha1
{{- end }}

View file

@ -1,3 +1,4 @@
{{- if .Values.installCRD }}
# Define a "sensor" custom resource definition # Define a "sensor" custom resource definition
apiVersion: apiextensions.k8s.io/v1beta1 apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition kind: CustomResourceDefinition
@ -12,3 +13,4 @@ spec:
singular: sensor singular: sensor
scope: Namespaced scope: Namespaced
version: v1alpha1 version: v1alpha1
{{- end }}

View file

@ -4,6 +4,9 @@ registry: argoproj
# The image pull policy # The image pull policy
imagePullPolicy: Always imagePullPolicy: Always
# If set to false, skip installing the CRDs. Requires user to have them installed prior to helm chart installation.
installCRD: true
# ServiceAccount to use for running controller. # ServiceAccount to use for running controller.
serviceAccount: argo-events-sa serviceAccount: argo-events-sa
# Create service accounts in additional namespaces specified # Create service accounts in additional namespaces specified
@ -13,7 +16,7 @@ additionalSaNamespaces: []
instanceID: argo-events instanceID: argo-events
# set `singleNamespace` to false to have the controllers # set `singleNamespace` to false to have the controllers
# listen on all namespaces. Otherwise the controllers will listen # listen on all namespaces. Otherwise the controllers will listen
# on the namespace provided # on the namespace provided
namespace: argo-events namespace: argo-events
@ -23,11 +26,11 @@ singleNamespace: true
sensorController: sensorController:
name: sensor-controller name: sensor-controller
image: sensor-controller image: sensor-controller
tag: v0.9.2 tag: v0.10
replicaCount: 1 replicaCount: 1
gatewayController: gatewayController:
name: gateway-controller name: gateway-controller
image: gateway-controller image: gateway-controller
tag: v0.9.2 tag: v0.10
replicaCount: 1 replicaCount: 1