Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/influxdata/influxdb-action
A GitHub action for setting up and configuring InfluxDB and the InfluxDB Cloud CLI
https://github.com/influxdata/influxdb-action
actions github-actions influxdb
Last synced: 1 day ago
JSON representation
A GitHub action for setting up and configuring InfluxDB and the InfluxDB Cloud CLI
- Host: GitHub
- URL: https://github.com/influxdata/influxdb-action
- Owner: influxdata
- License: mit
- Created: 2021-06-04T23:08:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-31T17:58:18.000Z (6 months ago)
- Last Synced: 2024-10-31T10:39:06.519Z (15 days ago)
- Topics: actions, github-actions, influxdb
- Language: Shell
- Homepage: https://influxdata.com
- Size: 14.6 KB
- Stars: 6
- Watchers: 3
- Forks: 16
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InfluxDB Action
This action downloads, installs, and configures an InfluxDB OSS instance and CLI tooling that can be used in your automation.
This downloads the specified version (or `latest` or `nightly`), and adds `influxd` and `influx` commands to `/usr/local/bin`.
# Usage
See [action.yml](action.yml)
### Setup and configure InfluxDB and CLI Tools
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup InfluxDB
uses: influxdata/influxdb-action@v3
with:
influxdb_version: latest
influxdb_org: influxdata
influxdb_user: ci_user
influxdb_password: password
influxdb_bucket: dummy
```### Install but don't start InfluxDB (influx CLI Tooling Only)
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup InfluxDB
uses: influxdata/influxdb-action@v3
with:
influxdb_version: latest
influxdb_start: false
```### Use a specific version of InfluxDB
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup InfluxDB
uses: influxdata/influxdb-action@v3
with:
influxdb_version: 2.0.7
influxdb_org: influxdata
influxdb_user: ci_user
influxdb_password: password
influxdb_bucket: dummy
```