Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pulumiverse/pulumi-talos
Pulumi provider for Talos
https://github.com/pulumiverse/pulumi-talos
pulumi pulumi-provider
Last synced: 12 days ago
JSON representation
Pulumi provider for Talos
- Host: GitHub
- URL: https://github.com/pulumiverse/pulumi-talos
- Owner: pulumiverse
- License: mpl-2.0
- Created: 2022-02-07T09:16:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T00:32:33.000Z (21 days ago)
- Last Synced: 2024-10-18T23:58:26.770Z (19 days ago)
- Topics: pulumi, pulumi-provider
- Language: Python
- Homepage:
- Size: 1.2 MB
- Stars: 39
- Watchers: 3
- Forks: 11
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Talos Resource Provider
The Talos Resource Provider lets you manage [Talos Linux](https://talos.dev) machines & clusters.
## Installing
This package is available for several languages/platforms:
### Node.js (JavaScript/TypeScript)
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
```bash
npm install @pulumiverse/talos
```or `yarn`:
```bash
yarn add @pulumiverse/talos
```### Python
To use from Python, install using `pip`:
```bash
pip install pulumiverse_talos
```
If you see an error as such.
```
import pulumiverse_talos
Traceback (most recent call last):
File "", line 1, in
File "/venv/lib/python3.12/site-packages/pulumiverse_talos/__init__.py", line 5, in
from . import _utilities
File "/venv/lib/python3.12/site-packages/pulumiverse_talos/_utilities.py", line 11, in
import pkg_resources
ModuleNotFoundError: No module named 'pkg_resources'
```
Try installing
```
pip install setuptools
```
If you're using a Python Virtual Env
```
python3 -m venv venv
source venv/bin/activate
pip install setuptools
pip install pulumiverse_talos
# Test if the import works
python -c "import pulumiverse_talos"
```### Go
To use from Go, use `go get` to grab the latest version of the library:
```bash
go get github.com/pulumiverse/pulumi-talos/sdk/go/...
```### .NET
To use from .NET, install using `dotnet add package`:
```bash
dotnet add package Pulumiverse.Talos
```## Reference
For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/talos/api-docs/).