🛑 DEPRECATED: USE https://github.com/cloudy-sky-software/pulumi-provider-template INSTEAD. 🛑
This repository is a boilerplate showing how to create and locally test a native Pulumi provider generated from an OpenAPI 3.0 spec.
This boilerplate lets you create a working native Pulumi provider named xyz.
You'll need to update provider/pkg/provider/provider.go and implement the necessary CRUD functions from Pulumi's ResourceProviderServer interface.
Prerequisites for this repository are already satisfied by the Pulumi Devcontainer if you are using Github Codespaces, or VSCode.
If you are not using VSCode, you will need to ensure the following tools are installed and present in your $PATH:
pulumictl- Go 1.21 or 1.latest
- NodeJS 14.x. We recommend using nvm to manage NodeJS installations.
- Yarn
- TypeScript
- Python (called as
python3). For recent versions of MacOS, the system-installed version is fine. - .NET
- Create a new Github CodeSpaces environment using this repository.
- Open a terminal in the CodeSpaces environment.
- Run
make build installto build and install the provider. - Run
make gen_examplesto generate the example programs inexamples/off of the sourceexamples/yamlexample program. - Run
make upto run the example program inexamples/yaml. - Run
make downto tear down the example program.
Pulumi offers this repository as a GitHub template repository for convenience. From this repository:
- Click "Use this template".
- Set the following options:
- Owner: pulumi
- Repository name: pulumi-xyz-native (replace "xyz" with the name of your provider)
- Description: Pulumi provider for xyz
- Repository type: Public
- Clone the generated repository.
From the templated repository:
- Search-replace
xyzwith the name of your desired provider.
$ make build install
This will:
- Create the SDK codegen binary and place it in a
./binfolder (gitignored) - Create the provider binary and place it in the
./binfolder (gitignored) - Generate the dotnet, Go, Node, and Python SDKs and place them in the
./sdkfolder - Install the provider on your machine.
You now have:
- A
provider/folder containing the building and implementation logiccmd/pulumi-resource-xyz/main.go- holds the provider's sample implementation logic.
deployment-templates- a set of files to help you around deployment and publicationsdk- holds the generated code libraries created bypulumi-gen-xyz/main.goexamplesa folder of Pulumi programs to try locally and/or use in CI.- A
Makefileand thisREADME.
This repository depends on pulschema library to handle generating a Pulumi schema from an OpenAPI 3.x spec. For a successful schema generation, you should ensure that your OpenAPI spec is valid and that it conforms to certain expectations. Learn more at https://github.com/cloudy-sky-software/cloud-provider-api-conformance.
Create an example program using the resources defined in your provider, and place it in the examples/ folder.
You can now repeat the steps for build, install, and test.
- Follow the instructions laid out in the deployment templates.
Other resources/examples for implementing providers: