From db700b1c2659004fe3a60e5ba714eebbc09606a2 Mon Sep 17 00:00:00 2001 From: juan131 Date: Thu, 26 Sep 2019 13:11:05 +0200 Subject: [PATCH] Add LICENSE, README.md, PR templates + stale bot configuration Signed-off-by: juan131 --- bitnami/influxdb/.github/ISSUE_TEMPLATE.md | 60 +++++++++++++++++++ .../influxdb/.github/PULL_REQUEST_TEMPLATE.md | 32 ++++++++++ bitnami/influxdb/.github/stale.yml | 36 +++++++++++ bitnami/influxdb/LICENSE | 13 ++++ bitnami/influxdb/README.md | 9 +++ 5 files changed, 150 insertions(+) create mode 100644 bitnami/influxdb/.github/ISSUE_TEMPLATE.md create mode 100644 bitnami/influxdb/.github/PULL_REQUEST_TEMPLATE.md create mode 100644 bitnami/influxdb/.github/stale.yml create mode 100644 bitnami/influxdb/LICENSE create mode 100644 bitnami/influxdb/README.md diff --git a/bitnami/influxdb/.github/ISSUE_TEMPLATE.md b/bitnami/influxdb/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000000..da2b4da33fde --- /dev/null +++ b/bitnami/influxdb/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,60 @@ + + +**Description** + + + +**Steps to reproduce the issue:** + +1. [First Step] +2. [Second Step] +3. [and so on...] + +**Describe the results you received:** + + + +**Describe the results you expected:** + + + +**Additional information you deem important (e.g. issue happens only occasionally):** + + + +**Version** + +- Output of `docker version`: + +``` +(paste your output here) +``` + +- Output of `docker info`: + +``` +(paste your output here) +``` + +- Output of `docker-compose version` (if applicable): + +``` +(paste your output here) +``` + +**Additional environment details (AWS, VirtualBox, Docker for MAC, physical, etc.):** diff --git a/bitnami/influxdb/.github/PULL_REQUEST_TEMPLATE.md b/bitnami/influxdb/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000000..c2acbe6e0d70 --- /dev/null +++ b/bitnami/influxdb/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,32 @@ + + +**Description of the change** + + + +**Benefits** + + + +**Possible drawbacks** + + + +**Applicable issues** + + + +**Additional information** + + diff --git a/bitnami/influxdb/.github/stale.yml b/bitnami/influxdb/.github/stale.yml new file mode 100644 index 000000000000..ea65d3277a62 --- /dev/null +++ b/bitnami/influxdb/.github/stale.yml @@ -0,0 +1,36 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 15 + +# Number of days of inactivity before a stale Issue or Pull Request is closed. +daysUntilClose: 5 + +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable +exemptLabels: + - on-hold + +# Label to use when marking as stale +staleLabel: stale + +issues: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. + +pulls: + # Comment to post when marking as stale. Set to `false` to disable + markComment: > + This Pull Request has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thank you for your contribution. + + # Comment to post when closing a stale Issue or Pull Request. + closeComment: > + Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Pull Request. Do not hesitate to reopen it later if necessary. + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 + diff --git a/bitnami/influxdb/LICENSE b/bitnami/influxdb/LICENSE new file mode 100644 index 000000000000..ddf3db6841a3 --- /dev/null +++ b/bitnami/influxdb/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2019 Bitnami + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/bitnami/influxdb/README.md b/bitnami/influxdb/README.md new file mode 100644 index 000000000000..9c82bb0e82d4 --- /dev/null +++ b/bitnami/influxdb/README.md @@ -0,0 +1,9 @@ +# What is InfluxDB? + +> [InfluxDB](https://github.com/influxdata/influxdb) is an open source time-series database. It is designed to handle large write and read loads in real-time. It is a core component of the TICK (Telegraf, InfluxDB, Chronograf, Kapacitor) stack. + +# TL;DR; + +```bash +$ docker run --name influxdb bitnami/influxdb:latest +```