mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
update eventrouter to v0.3 (#21140)
Signed-off-by: blakeroberts-wk <blake.roberts@workiva.com>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
apiVersion: v1
|
||||
description: A Helm chart for eventruter (https://github.com/heptiolabs/eventrouter)
|
||||
name: eventrouter
|
||||
version: 0.2.3
|
||||
appVersion: 0.2
|
||||
version: 0.3.0
|
||||
appVersion: 0.3
|
||||
home: https://github.com/heptiolabs/eventrouter
|
||||
sources:
|
||||
- https://github.com/heptiolabs/eventrouter
|
||||
|
||||
@@ -2,11 +2,18 @@
|
||||
|
||||
[eventrouter](https://github.com/heptiolabs/eventrouter) simple introspective kubernetes service that forwards events to a specified sink.
|
||||
|
||||
|
||||
# Installation:
|
||||
## Installation
|
||||
|
||||
```console
|
||||
$ helm install stable/eventrouter --name my-release
|
||||
NAME: k8s-eventrouter
|
||||
LAST DEPLOYED: Fri Feb 28 14:57:53 2020
|
||||
NAMESPACE: default
|
||||
STATUS: deployed
|
||||
REVISION: 1
|
||||
TEST SUITE: None
|
||||
NOTES:
|
||||
eventrouter has been installed!
|
||||
```
|
||||
|
||||
## Configuration
|
||||
@@ -16,7 +23,7 @@ The following table lists the configurable parameters of the eventrouter chart a
|
||||
| Parameter | Description | Default |
|
||||
| ----------------------- | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------- |
|
||||
| `image.repository` | Container image name | `gcr.io/heptio-images/eventrouter` |
|
||||
| `image.tag ` | Container image tag | `v0.2` |
|
||||
| `image.tag` | Container image tag | `v0.3` |
|
||||
| `rbac.create` | If `true`, create and use RBAC resources | `true` |
|
||||
| `serviceAccount.name` | Service account to be used. If not set and serviceAccount.create is `true`, a name is generated using the fullname template | `` |
|
||||
| `serviceAccount.create` | If true, create a new service account | `true` |
|
||||
@@ -26,3 +33,4 @@ The following table lists the configurable parameters of the eventrouter chart a
|
||||
| `podAnnotations` | Annotations for pod metadata | `{}` |
|
||||
| `containerPorts` | List of ports for the container | `[]` |
|
||||
| `securityContext` | Security context for the pod | `{}` |
|
||||
| `enablePrometheus` | Enable prometheus | `true |
|
||||
|
||||
@@ -7,5 +7,6 @@ metadata:
|
||||
data:
|
||||
config.json: |-
|
||||
{
|
||||
"sink": "{{ .Values.sink }}"
|
||||
"sink": "{{ .Values.sink }}",
|
||||
"enable-prometheus": "{{ .Values.enablePrometheus }}"
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
image:
|
||||
repository: gcr.io/heptio-images/eventrouter
|
||||
tag: v0.2
|
||||
tag: v0.3
|
||||
pullPolicy: IfNotPresent
|
||||
resources: {}
|
||||
# limits:
|
||||
@@ -35,3 +35,5 @@ containerPorts: []
|
||||
|
||||
securityContext: {}
|
||||
# runAsUser: 1000
|
||||
|
||||
enablePrometheus: true
|
||||
|
||||
Reference in New Issue
Block a user