https://github.com/crossplane-contrib/provider-tinkerbell
**EXPERIMENTAL** (and non-functional) Crossplane Provider for Tinkerbell
https://github.com/crossplane-contrib/provider-tinkerbell
basemetal-provisioning crossplane tinkerbell
Last synced: 2 months ago
JSON representation
**EXPERIMENTAL** (and non-functional) Crossplane Provider for Tinkerbell
- Host: GitHub
- URL: https://github.com/crossplane-contrib/provider-tinkerbell
- Owner: crossplane-contrib
- License: apache-2.0
- Created: 2020-11-06T19:16:18.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-13T20:54:46.000Z (over 2 years ago)
- Last Synced: 2024-11-30T22:17:19.873Z (10 months ago)
- Topics: basemetal-provisioning, crossplane, tinkerbell
- Language: Go
- Homepage:
- Size: 133 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# crossplane-provider-tinkerbell
This repository is [Experimental](https://github.com/packethost/standards/blob/master/experimental-statement.md) meaning that it's based on untested ideas or techniques and not yet established or finalized or involves a radically new and innovative style! This means that support is best effort (at best!) and we strongly encourage you to NOT use this in production.
`crossplane-provider-tinkerbell` is an **experimental** [Crossplane](https://crossplane.io/) Provider for [Tinkerbell](https://tinkerbell.org). It intends to offer the following features (currently incomplete and experimental):
- A `ProviderConfig` type that only points to a credentials `Secret`.
The value in the Secret key (identified by the `credentialsSecretRef`) should contain a json or yaml string that includes `grpc_authority` and `cert_url`.
- A `Hardware` resource type that serves as to managed Hardware resources.
- A `Template` resource type that serves as to manage Template resources.
- A `Workflow` resource type that serves as to manage Workflow resources.
- A managed resource controller that reconciles `Hardware` objects and simply
prints their configuration in its `Observe` method.
- A managed resource controller that reconciles `Template` objects and simply
prints their configuration in its `Observe` method.
- A managed resource controller that reconciles `Workflow` objects and simply
prints their configuration in its `Observe` method.## Developing
Run against a Kubernetes cluster:
```console
make run
```Install `latest` into Kubernetes cluster where Crossplane is installed:
```console
make install
```Install local build into [Kind](https://kind.sigs.k8s.io/docs/user/quick-start/)
cluster where Crossplane is installed:```console
make install-local
```Build, push, and install:
```console
make all
```Build image:
```console
make image
```Push image:
```console
make push
```Build binary:
```console
make build
```