- 19 Feb, 2020 3 commits
-
-
David McKay authored
-
David McKay authored
-
David McKay authored
-
- 18 Feb, 2020 1 commit
-
-
Angelo Fausti authored
* Use an existing secret for the InfluxDB auth - Sometimes you need to check in the values.yaml in a repo and you don't want to expose the secrets. With the existingSecret option you can use and existing kubernetes secret with the keys `influxdb-user` and `infuxdb-password` to set the corresponding environment variables in Kapacitor. The keys are the same as the ones used in the `influxdb-auth` secret created by the InfluxDB Helm chart. Signed-off-by: Angelo Fausti <afausti@lsst.org> * Bump minor version instead Signed-off-by: Angelo Fausti <afausti@lsst.org>
-
- 17 Feb, 2020 4 commits
-
-
Naseem authored
* Use include function instead of template. Signed-off-by: Naseem <naseem@transit.app> * Update image to 1.7.9 Signed-off-by: Naseem <naseem@transit.app> * Bump chart version. Signed-off-by: Naseem <naseem@transit.app> * Update to 1.7.10 Signed-off-by: Naseem <naseem@transit.app> * Revert "Update to 1.7.10" This reverts commit a6f146d332d1ee3fa2a3d4cdba685a4cfba5ea4f. Signed-off-by: Naseem <naseem@transit.app>
-
Aisuko authored
Signed-off-by: Aisuko <urakiny@gmail.com>
-
Naseem authored
* Use include function instead of template. Signed-off-by: Naseem <naseem@transit.app> * Hardcode probe path. There is no value in making the path configurable. By hardcoding it to /ping we remove unecessary templating and config complexity. Signed-off-by: Naseem <naseem@transit.app>
-
Naseem authored
Signed-off-by: Naseem <naseem@transit.app>
-
- 16 Feb, 2020 3 commits
-
-
Karl Böhlmark authored
Signed-off-by: Karl Böhlmark <karl.bohlmark@gmail.com>
-
Naseem authored
* Refactor configmap by using implicit default values Instead of having every default value explicitly described in the values file and put into the corresponding configmap(s), just use defaults and adjust these values as needed. This is beneficial because overtime defaults may change and it is duplicate work to match it in the values file. Furthermore documenting configurable values in the README will be much more feasible. This PR also removes the now defunct admin section of the config. Signed-off-by: Naseem <naseem@transit.app> * Rename config to configmap Signed-off-by: Naseem <naseem@transit.app> * enable api and rpc ports always Signed-off-by: Naseem <naseem@transit.app>
-
Naseem authored
* influxdb-fix-labels Signed-off-by: Naseem <naseem@transit.app> * Fix labels Signed-off-by: Naseem <naseem@transit.app> * use names ports Signed-off-by: Naseem <naseem@transit.app>
-
- 15 Feb, 2020 3 commits
-
-
Naseem authored
* influxdb-fix-labels Signed-off-by: Naseem <naseem@transit.app> * Fix labels Signed-off-by: Naseem <naseem@transit.app> * Allow use of workload identity to auth to GCS By making the mounting of a GSA key optional, it give the option of using workload identity to provide the backup with access to GCS. For more info on workload identity please see https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identitySigned-off-by: Naseem <naseem@transit.app>
-
Naseem authored
* influxdb-fix-labels Signed-off-by: Naseem <naseem@transit.app> * Fix labels Signed-off-by: Naseem <naseem@transit.app>
-
Naseem authored
* update-labels In accordance with https://kubernetes.io/docs/concepts/overview/working-with-objects/common-labels/\#labels, this PR uses recommended labels and creates the required helpers to keep teplates more DRY. This PR also adds a serviceaccount, a first step in allowing GCP users to use workload identity for storage access. Signed-off-by: Naseem <naseem@transit.app> * get rid of specifying clusterIP And add README note Signed-off-by: Naseem <naseem@transit.app>
-
- 14 Feb, 2020 1 commit
-
-
GullomJ authored
Signed-off-by: GullomJ <33196603+GullomJ@users.noreply.github.com>
-
- 17 Jan, 2020 1 commit
-
-
wgj authored
* Adds support for InfluxDB Enterprise Follows the newly introduced pattern of StatefulSets for pods, extending InfluxDB's sts and allowing parameter for it's ReplicaSet, and adds a new sts for InfluxDB "meta nodes" which hold distribution state for InfluxDB's high availability and horizontal scaling. Documentation for these new features has been added, but I can not stress enough how important it is to follow, as Enterprise not only uses different container images for meta containers, but also expects new container images for InfluxDB (appropriately labeled `data` in Docker Hub) which in my experience was easy to miss if a user is following one set of [instructions](https://docs.influxdata.com/enterprise_influxdb/v1.7/install-and-deploy/production_installation/data_node_installation/) over [another](https://hub.docker.com/_/influxdb). A caveat of trade off of deploying Enterprise is an expectation of human interaction when creating or scaling the cluster (`influxd-ctl` usage). This makes Enterprise decidedly not "cloud native", but is less obnoxious when using a StatefulSet with PVCs, and no pod auto-scaling, of which I suppose is unlikely given InfluxData's approach to licensing. Still forcing k8s operator involvement feels "bad", and I left in provisions to improve this expectation in a later version, namely a headless service and using `publishNotReadyAddresses`, such that a pod can use the Service to find available `influxdb-meta` and `influxdb` pods to create/join an InfluxDB cluster. Signed-off-by: Weston Johnson <wgj@automox.com> * Adds missing newline at end of file Signed-off-by: Weston Johnson <wgj@automox.com> * Add reference links for InfluxDB Enterprise Signed-off-by: Weston Johnson <wgj@automox.com> * Bump version Signed-off-by: Weston Johnson <wgj@automox.com> * Remove bad whitespace that sneaked in Signed-off-by: Weston Johnson <wgj@automox.com> * Hard code headless service for metadata Metadata service is a StatefulSet, so it doesn't make sense to let users to set the k8s service to anything but ClusterIP::None. This is true for the StatefulSet for InfluxDB data pods, but that will be fixed in a subsequent PR. When that happens, the Enterprise section of README.md should be updated to remove references to ClusterIP::None. Signed-off-by: Weston Johnson <wgj@automox.com>
-
- 04 Jan, 2020 1 commit
-
-
spring-bu authored
Signed-off-by: youngman <shengquan.bu@iquantex.com>
-
- 03 Jan, 2020 1 commit
-
-
Angelo Fausti authored
* Set the default user from an existing secret Signed-off-by: Angelo Fausti <afausti@lsst.org> * Address reviewer comments Signed-off-by: Angelo Fausti <afausti@lsst.org>
-
- 26 Dec, 2019 1 commit
-
-
Cees-Jan Kiewiet authored
* [stable/telegraf] Configurable service account By default the telegraf service runs with the default RBAC permissions this PR adds the option to create a service account with configurable rules. Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Move RBAD flag one level up Co-Authored-By: Naseem <naseemkullah@gmail.com> Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Align templates with charts Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Update RBAC deployment conditional Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Make role and binding kind configurable Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Move comments about values Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Simplify (cluster)role values Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] prometheus input rules example Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Applied @naseemkullah suggestions Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> * [stable/telegraf] Corrected bad copy pasta Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com> Co-authored-by: Naseem <naseemkullah@gmail.com>
-
- 14 Dec, 2019 1 commit
-
-
Cees-Jan Kiewiet authored
Signed-off-by: Cees-Jan Kiewiet <ceesjank@gmail.com>
-
- 10 Dec, 2019 1 commit
-
-
Dane Jensen authored
Signed-off-by: DaneJensen <dane.jensen@target.com>
-
- 05 Dec, 2019 1 commit
-
-
Austin Hartzheim authored
Signed-off-by: Austin Hartzheim <austin.hartzheim@target.com>
-
- 28 Nov, 2019 1 commit
-
-
Dennis Wendland authored
* Support index-version variable Signed-off-by: Dennis Wendland <dennis.wendland@telekom.de> * Changing doc address Signed-off-by: Dennis Wendland <dennis.wendland@telekom.de>
-
- 13 Nov, 2019 1 commit
-
-
Max Rosin authored
Signed-off-by: Max Rosin <git@hackrid.de>
-
- 11 Nov, 2019 1 commit
-
-
Felippe Mendonça authored
* feat(stable/influxdb): changes from deployment to statefulset Signed-off-by: Felippe Mendonça <mendonca.felippe@gmail.com> * [stable/influxdb] adds brief description about statefulset Signed-off-by: Felippe Mendonça <mendonca.felippe@gmail.com> * [stable/influx] chart version bumped Signed-off-by: Felippe Mendonça <mendonca.felippe@gmail.com>
-
- 05 Nov, 2019 1 commit
-
-
Marc Cirauqui authored
Signed-off-by: Marc Cirauqui <mcirauqui@gmail.com>
-
- 31 Oct, 2019 1 commit
-
-
Holger Mauermann authored
* [stable/influxdb] fix gcs backup destination Signed-off-by: Holger Mauermann <holger@mauermann.org> Signed-off-by: Holger Mauermann <holger.mauermann@kiwigrid.com> * [stable/influxdb] make secret key field configurable Signed-off-by: Holger Mauermann <holger@mauermann.org> Signed-off-by: Holger Mauermann <holger.mauermann@kiwigrid.com> * [stable/influxdb] bump chart version Signed-off-by: Holger Mauermann <holger@mauermann.org> Signed-off-by: Holger Mauermann <holger.mauermann@kiwigrid.com>
-
- 30 Oct, 2019 1 commit
-
-
Jeff Billimek authored
* update to support k8s v1.16 Signed-off-by: Jeff Billimek <jeffrey_k_billimek@homedepot.com> * adding necessary matchLabels Signed-off-by: Jeff Billimek <jeff@billimek.com> * Bump major version and update readme Signed-off-by: Jeff Billimek <jeff@billimek.com> * bumping chart version not appversion Signed-off-by: Jeff Billimek <jeff@billimek.com>
-
- 24 Oct, 2019 1 commit
-
-
Marc Cirauqui authored
* Add prometheus client to telegraf service Signed-off-by: Marc Cirauqui <mcirauqui@gmail.com> * Prometheus is an output plugin Signed-off-by: Marc Cirauqui <mcirauqui@gmail.com>
-
- 23 Oct, 2019 1 commit
-
-
Jason Harris authored
* [stable/influxdb] add startup probe Signed-off-by: Jason Harris <1337reloaded@gmail.com> * [stable/influxdb] remove trailing whitespace Signed-off-by: Jason Harris <1337reloaded@gmail.com>
-
- 20 Oct, 2019 1 commit
-
-
Sébastien Prud'homme authored
Signed-off-by: Sébastien Prud'homme <sebastien.prudhomme@gmail.com>
-
- 10 Oct, 2019 1 commit
-
-
Ian Zink authored
Co-Authored-By: Thad Craft <tcraft@pivotal.io> Signed-off-by: Ian Zink <zforce@gmail.com>
-
- 09 Oct, 2019 1 commit
-
-
Jorge Eduardo Villaverde authored
Signed-off-by: Jorge Villaverde <jorge.villaverde@sitewhere.com>
-
- 12 Sep, 2019 1 commit
-
-
Tomasz Główka authored
Signed-off-by: Tomasz Glowka <glowka.tom@gmail.com>
-
- 03 Sep, 2019 1 commit
-
-
Zach Seils authored
* Make livenessProbe and readinessProbe path configurable. Signed-off-by: Zach Seils <zachseils@google.com> * Make livenessProbe and readinessProbe path configurable. Signed-off-by: Zach Seils <zachseils@google.com>
-
- 24 Aug, 2019 1 commit
-
-
Aisuko authored
Signed-off-by: Aisuko <urakiny@gmail.com>
-
- 19 Aug, 2019 1 commit
-
-
Victor Login authored
Signed-off-by: Login Victor <batazor111@gmail.com>
-
- 09 Aug, 2019 1 commit
-
-
Ian Zink authored
Signed-off-by: Ian Zink <zforce@gmail.com>
-
- 31 Jul, 2019 1 commit
-
-
allaVolkov authored
Signed-off-by: Alla Volkov <alla.volkov@sap.com> Signed-off-by: i019379 <alla.volkov@sap.com>
-
- 28 Jul, 2019 1 commit
-
-
Naseem authored
* Upgrade influxdb to 1.7.6 Signed-off-by: Naseem <naseemkullah@gmail.com> * Add backups to GCS Signed-off-by: Naseem <naseemkullah@gmail.com> * Proposed fixes Signed-off-by: Naseem <naseemkullah@gmail.com>
-