https://github.com/morningspace/provider-roboshop
https://github.com/morningspace/provider-roboshop
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/morningspace/provider-roboshop
- Owner: morningspace
- License: apache-2.0
- Created: 2021-05-16T08:53:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-16T08:53:19.000Z (about 5 years ago)
- Last Synced: 2025-01-29T22:46:55.221Z (over 1 year ago)
- Language: Go
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- 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
```