Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #44 from cetic/feature/influxdb
Browse files Browse the repository at this point in the history
Adding InfluxDB Helm service
  • Loading branch information
banzo authored Nov 22, 2021
2 parents 2ceed14 + 78dc91f commit abc29d2
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 4 deletions.
10 changes: 7 additions & 3 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: fadi
version: 0.2.11
appVersion: 0.2.11
version: 0.2.12
appVersion: 0.2.12
description: FADI is a Cloud Native platform for Big Data based on mature open source tools.
keywords:
- fadi
Expand Down Expand Up @@ -126,4 +126,8 @@ dependencies:
- name: mongodb
version: ~10.11.1
repository: https://charts.bitnami.com/bitnami
condition: mongodb.enabled
condition: mongodb.enabled
- name: influxdb
version: ^2.3.18
repository: https://charts.bitnami.com/bitnami
condition: influxdb.enabled
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Each requirement is configured with the options provided by that Chart. Please c
| `mongodb.enabled` | Enable [mongodb](https://artifacthub.io/packages/helm/bitnami/mongodb) | `false` |
| `rabbitmq.enabled` | Enable [rabbitmq](https://artifacthub.io/packages/helm/bitnami/rabbitmq) | `false` |
| `thingsboard.enabled` | Enable [thingsboard](https://github.com/cetic/helm-thingsboard) | `false` |

| `influxdb.enabled` | Enable [influxdb](https://github.com/bitnami/charts/tree/master/bitnami/influxdb) | `false` |
## Contributing

Feel free to contribute by making a [pull request](https://github.com/cetic/helm-fadi/pull/new/master).
Expand Down
6 changes: 6 additions & 0 deletions questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,9 @@ questions:
type: boolean
required: true
label: Enable Adminer
- variable: influxdb.enabled
default: "false"
description: "Enable influxdb service"
type: boolean
required: true
label: Enable Influxdb
24 changes: 24 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -530,3 +530,27 @@ mongodb:
$MONGODB_BIN_DIR/mongo admin --host 127.0.0.1 --port $MONGODB_PORT_NUMBER -u root -p $MONGODB_ROOT_PASSWORD << EOF
db.createUser({ user: "admin" , pwd: "password1", roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})
EOF
influxdb:
enabled: false
auth:
admin:
username: admin
password: ""
user:
username: ""
password: ""
bucket: ""
influxdb:
replicaCount: 1
service:
type: ClusterIP
port: 8086
rpcPort: 8088
persistence:
enabled: true
storageClass: ""
size: 8Gi
ingress:
enabled: false
hostname:

0 comments on commit abc29d2

Please sign in to comment.