An open API service indexing awesome lists of open source software.

https://github.com/iotsharp/tdengine-action

This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.
https://github.com/iotsharp/tdengine-action

github-action tdengine time-series

Last synced: about 2 months ago
JSON representation

This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.

Awesome Lists containing this project

README

        

# TDengine Action

This action downloads, installs, and configures an TDengine OSS instance and CLI tooling that can be used in your automation.

This downloads the specified version (or `latest` ).

# Usage

See [action.yml](action.yml)

### Setup and configure TDengine and CLI Tools
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: latest
```

### Install but don't start TDengine ( CLI Tooling Only)
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: latest
tdengine_start: false
```

### Use a specific version of TDengine
```yaml
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup TDengine
uses: iotsharp/tdengine-action@v2
with:
tdengine_version: 3.0.2.1

```