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 🗺
- Host: GitHub
- URL: https://github.com/dirien/provider-minectl
- Owner: dirien
- License: apache-2.0
- Created: 2021-08-28T08:45:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T10:45:28.000Z (over 1 year ago)
- Last Synced: 2025-03-18T06:44:02.944Z (over 1 year ago)
- Language: Go
- Size: 136 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```