Skip to content

Commit

Permalink
fix(charts): update versions, contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
Russ Savage authored and naseemkullah committed Feb 28, 2020
1 parent 166981a commit 0e15939
Show file tree
Hide file tree
Showing 17 changed files with 52 additions and 35 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ You can then run `helm search repo influxdata` to see the charts.

## Contributing

We'd love to have you contribute! Please refer to our [contribution guidelines](CONTRIBUTING) for details.
We'd love to have you contribute! Please refer to our [contribution guidelines](CONTRIBUTING.md) for details.

## License

Expand Down
4 changes: 3 additions & 1 deletion charts/chronograf/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
apiVersion: v1
name: chronograf
version: 1.1.5
appVersion: 1.7.12
appVersion: 1.8.0
description: Open-source web application written in Go and React.js that provides
the tools to visualize your monitoring data and easily create alerting and automation
rules.
keywords:
- chronograf
- visualizaion
- timeseries
- influxdata
- influxdb
home: https://www.influxdata.com/time-series-platform/chronograf/
maintainers:
- name: rawkode
Expand Down
6 changes: 4 additions & 2 deletions charts/chronograf/OWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
approvers:
- jackzampolin
- rawkode
- gitirabassi
reviewers:
- jackzampolin
- rawkode
- gitirabassi
10 changes: 5 additions & 5 deletions charts/chronograf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```bash
helm repo add influxdata https://helm.influxdata.com/
helm install influxdata/chronograf --name foo --namespace bar
helm install my-release influxdata/chronograf --namespace monitoring
```

## Introduction
Expand All @@ -25,7 +25,7 @@ This chart bootstraps a Chronograf deployment and service on a Kubernetes cluste
To install the chart with the release name `my-release`:

```bash
helm install --name my-release influxdata/chronograf
helm install my-release influxdata/chronograf
```

The command deploys Chronograf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -52,7 +52,7 @@ The following table lists the configurable parameters of the chronograf chart an
| Parameter | Description | Default |
|:-----------------------------|:----------------------------------------------------------------------------------------------------------|:--------------------------------------------|
| `image.repository` | controller container image repository | quay.io/influxdb/chronograf |
| `image.tag` | controller container image tag | 1.7.12 |
| `image.tag` | controller container image tag | 1.8.0 |
| `image.pullPolicy` | controller container image pull policy | IfNotPresent |
| `service.type` | ClusterIP, NodePort, or LoadBalancer | ClusterIP |
| `persistence.enabled` | Use a PVC to persist data | `true` |
Expand Down Expand Up @@ -87,7 +87,7 @@ The following table lists the configurable parameters of the chronograf chart an
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```bash
helm install --name my-release \
helm install my-release \
--set ingress.enabled=true,ingress.hostname=chronograf.foobar.com \
influxdata/chronograf
```
Expand All @@ -97,7 +97,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```bash
helm install --name my-release -f values.yaml influxdata/chronograf
helm install my-release -f values.yaml influxdata/chronograf
```

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand Down
5 changes: 3 additions & 2 deletions charts/chronograf/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
image:
repository: "chronograf"
tag: 1.7.12
tag: 1.8.0
pullPolicy: IfNotPresent

## Specify a service type
Expand Down Expand Up @@ -97,7 +97,8 @@ oauth:
he_orgs: ""

## Extra environment variables that will be passed onto deployment pods
env: {}
env:
HOST_PAGE_DISABLED: true

## The name of a secret in the same kubernetes namespace which contain values to be added to the environment
## This can be useful for auth tokens, etc
Expand Down
3 changes: 2 additions & 1 deletion charts/influxdb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
apiVersion: v1
name: influxdb
version: 4.3.1
appVersion: 1.7.9
appVersion: 1.7.10
description: Scalable datastore for metrics, events, and real-time analytics.
keywords:
- influxdb
- database
- timeseries
- influxdata
home: https://www.influxdata.com/time-series-platform/influxdb/
sources:
- https://github.com/influxdata/influxdb
Expand Down
6 changes: 4 additions & 2 deletions charts/influxdb/OWNERS
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
approvers:
- jackzampolin
- rawkode
- gitirabassi
- aisuko
- naseemkullah
reviewers:
- jackzampolin
- rawkode
- gitirabassi
- aisuko
- naseemkullah
8 changes: 4 additions & 4 deletions charts/influxdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```bash
helm repo add influxdata https://helm.influxdata.com/
helm install influxdata/influxdb --name foo --namespace bar
helm install my-release influxdata/influxdb --namespace monitoring
```

## Introduction
Expand All @@ -25,7 +25,7 @@ This chart bootstraps an InfluxDB statefulset and service on a Kubernetes cluste
To install the chart with the release name `my-release`:

```bash
helm install --name my-release influxdata/influxdb
helm install my-release influxdata/influxdb
```

The command deploys InfluxDB on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -51,7 +51,7 @@ The [full image documentation](https://hub.docker.com/_/influxdb/) contains more
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```bash
helm install --name my-release \
helm install my-release \
--set persistence.enabled=true,persistence.size=200Gi \
influxdata/influxdb
```
Expand All @@ -61,7 +61,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```bash
helm install --name my-release -f values.yaml influxdata/influxdb
helm install my-release -f values.yaml influxdata/influxdb
```

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand Down
2 changes: 1 addition & 1 deletion charts/influxdb/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## ref: https://hub.docker.com/r/library/influxdb/tags/
image:
repository: "influxdb"
tag: "1.7.9-alpine"
tag: "1.7.10-alpine"
pullPolicy: IfNotPresent
## If specified, use these secrets to access the images
# pullSecrets:
Expand Down
6 changes: 4 additions & 2 deletions charts/kapacitor/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
apiVersion: v1
name: kapacitor
version: 1.2.5
appVersion: 1.5.3
version: 1.2.6
appVersion: 1.5.4
description: InfluxDB's native data processing engine. It can process both stream
and batch data from InfluxDB.
keywords:
- kapacitor
- stream
- etl
- timeseries
- influxdb
- influxdata
home: https://www.influxdata.com/time-series-platform/kapacitor/
sources:
- https://github.com/influxdata/kapacitor
Expand Down
8 changes: 5 additions & 3 deletions charts/kapacitor/OWNERS
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
approvers:
- jackzampolin
- rawkode
- gitirabassi
- aisuko
reviewers:
- jackzampolin
- deepaksood619
- rawkode
- gitirabassi
- aisuko
- deepaksood619
8 changes: 4 additions & 4 deletions charts/kapacitor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```bash
helm repo add influxdata https://helm.influxdata.com/
helm install influxdata/kapacitor --name foo --namespace bar
helm install my-release influxdata/kapacitor --namespace monitoring
```

## Introduction
Expand All @@ -25,7 +25,7 @@ This chart bootstraps A Kapacitor deployment and service on a Kubernetes cluster
To install the chart with the release name `my-release`:

```bash
helm install --name my-release influxdata/kapacitor
helm install my-release influxdata/kapacitor
```

The command deploys Kapacitor on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand Down Expand Up @@ -72,7 +72,7 @@ The [full image documentation](https://hub.docker.com/_/kapacitor/) contains mor
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,

```bash
helm install --name my-release \
helm install my-release \
--set influxURL=http://myinflux.mytld:8086,persistence.enabled=true \
influxdata/kapacitor
```
Expand All @@ -82,7 +82,7 @@ The above command enables persistence and changes the size of the requested data
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,

```bash
helm install --name my-release -f values.yaml influxdata/kapacitor
helm install my-release -f values.yaml influxdata/kapacitor
```

> **Tip**: You can use the default [values.yaml](values.yaml)
Expand Down
2 changes: 1 addition & 1 deletion charts/kapacitor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
##
image:
repository: "kapacitor"
tag: "1.5.3-alpine"
tag: "1.5.4-alpine"
pullPolicy: "IfNotPresent"

## Specify a service type, defaults to NodePort
Expand Down
4 changes: 3 additions & 1 deletion charts/telegraf/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: telegraf
version: 1.7.4
version: 1.7.5
appVersion: 1.13
deprecated: false
description: Telegraf is an agent written in Go for collecting, processing, aggregating, and writing metrics.
Expand All @@ -9,6 +9,8 @@ keywords:
- collector
- timeseries
- influxdata
- influxdb
- agent
home: https://www.influxdata.com/time-series-platform/telegraf/
maintainers:
- name: rawkode
Expand Down
7 changes: 5 additions & 2 deletions charts/telegraf/OWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
approvers:
- rawkode
- gitirabassi
- naseemkullah
reviewers:
- naseemkullah

- rawkode
- gitirabassi
- naseemkullah
6 changes: 3 additions & 3 deletions charts/telegraf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```console
helm repo add influxdata https://helm.influxdata.com/
helm install influxdata/telegraf
helm install telegraf influxdata/telegraf --namespace monitoring
```

## Introduction
Expand All @@ -22,7 +22,7 @@ This chart bootstraps a `telegraf` deployment on a [Kubernetes](http://kubernete
To install the chart with the release name `telegraf`:

`console
helm install --name telegraf --namespace monitoring influxdata/telegraf
helm install telegraf influxdata/telegraf --namespace monitoring
```
The command deploys Telegraf on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -44,7 +44,7 @@ The command removes all the Kubernetes components associated with the chart and
The default configuration parameters are listed in `values.yaml`.

`console
helm install --name telegraf influxdata/telegraf
helm install telegraf influxdata/telegraf
```
Outputs and inputs are configured as arrays of key/value dictionaries. Additional examples and defaults can be found in [values.yaml](values.yaml)
Expand Down

0 comments on commit 0e15939

Please sign in to comment.