https://github.com/laetho/provider-metagraf
crossplane provider research
https://github.com/laetho/provider-metagraf
Last synced: over 1 year ago
JSON representation
crossplane provider research
- Host: GitHub
- URL: https://github.com/laetho/provider-metagraf
- Owner: laetho
- License: apache-2.0
- Created: 2021-05-07T18:29:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-07T18:29:09.000Z (about 5 years ago)
- Last Synced: 2025-01-20T08:49:42.946Z (over 1 year ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# provider-template
`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
```