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

https://github.com/dirien/provider-minectl

A @crossplane provider for minectl 🗺
https://github.com/dirien/provider-minectl

Last synced: over 1 year ago
JSON representation

A @crossplane provider for minectl 🗺

Awesome Lists containing this project

README

          

# provider-Minectl

`provider-template` is a minimal [Crossplane](https://crossplane.io/) Provider
that is meant to be used as a template for implementing new Providers. It comes
with the following features that are meant to be refactored:

- A `ProviderConfig` type that only points to a credentials `Secret`.
- A `MyType` resource type that serves as an example managed resource.
- A managed resource controller that reconciles `MyType` objects and simply
prints their configuration in its `Observe` method.

## Developing

Run against a Kubernetes cluster:

```console
make run
```

Build, push, and install:

```console
make all
```

Build image:

```console
make image
```

Push image:

```console
make push
```

Build binary:

```console
make build
```