30 lines
794 B
Markdown
30 lines
794 B
Markdown
# Incus Resource Provider
|
|
|
|
The Incus Resource Provider lets you manage [Incus](https://linuxcontainers.org/incus/introduction/) resources.
|
|
|
|
## Installing
|
|
|
|
This package is available for several languages/platforms:
|
|
|
|
### Node.js (JavaScript/TypeScript)
|
|
|
|
To use from JavaScript or TypeScript in Node.js, install using `pnpm`:
|
|
|
|
```bash
|
|
echo "@kiterun:registry=https://git.kalinow.ski/api/packages/kiterun/npm/" > .npmrc
|
|
pnpm install @kiterun/incus
|
|
```
|
|
|
|
### Go
|
|
|
|
To use from Go, use `go get` to grab the latest version of the library:
|
|
|
|
```bash
|
|
GOPRIVATE=git.kalinow.ski go get git.kalinow.ski/kiterun/pulumi-incus/sdk/go/...
|
|
```
|
|
|
|
|
|
## Reference
|
|
|
|
For detailed reference documentation, please visit [the terraform docs](https://registry.terraform.io/providers/lxc/incus/latest/docs/resources/instance).
|