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

https://github.com/teaglebuilt/provider-proxmox


https://github.com/teaglebuilt/provider-proxmox

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

# provider-proxmox

`provider-proxmox` is a minimal [Crossplane](https://crossplane.io/) Provider
that is meant to be used as a proxmox 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

1. Use this repository as a proxmox to create a new one.
1. Find-and-replace `provider-proxmox` with your provider's name.
1. Run `make` to initialize the "build" Make submodule we use for CI/CD.
1. Run `make reviewable` to run code generation, linters, and tests.
1. Replace `MyType` with your own managed resource implementation(s).

Refer to Crossplane's [CONTRIBUTING.md] file for more information on how the
Crossplane community prefers to work. The [Provider Development][provider-dev]
guide may also be of use.

[CONTRIBUTING.md]: https://github.com/crossplane/crossplane/blob/master/CONTRIBUTING.md
[provider-dev]: https://github.com/crossplane/crossplane/blob/master/docs/contributing/provider_development_guide.md