A template for Upjet-based crossplane providers.
Go to file
Sergen Yalçın 90fdc764be
Merge pull request #111 from jastang/support-package-extensions
Update template with latest CI and QoL updates.
2025-06-23 20:14:35 +03:00
.github change go version default to 1.23 2025-06-23 12:04:38 -04:00
apis Update license statements 2024-08-01 14:22:36 +02:00
build@b0dfb8fbe8 Switch to crossplane/build 2024-05-29 17:47:09 -07:00
cluster fix EOF and root CRD 2025-02-28 16:03:22 -08:00
cmd Update cmd/provider/main.go 2024-10-07 13:26:48 +02:00
config Default go version set to 1.21 2024-07-30 14:45:57 +02:00
examples switch to xpkg.crossplane.io and use crossplane cli 2025-06-17 17:56:44 +02:00
examples-generated/null/v1alpha1 Default go version set to 1.21 2024-07-30 14:45:57 +02:00
extensions Update template with latest CI and QoL updates. 2025-06-20 14:07:06 -04:00
hack fix EOF and root CRD 2025-02-28 16:03:22 -08:00
internal Update license statements 2024-08-01 14:22:36 +02:00
package Default go version set to 1.21 2024-07-30 14:45:57 +02:00
scripts chore(make): update build module, align makefile and update ci workflows (#48) 2023-07-26 18:25:58 +02:00
.gitignore Initial commit 2021-10-22 17:10:28 +03:00
.gitmodules Switch to crossplane/build 2024-05-29 17:47:09 -07:00
.golangci.yml switch to fat-image approach and update all dependencies 2022-10-17 11:45:27 +03:00
CODEOWNERS Fix CODEOWNERS format 2023-03-03 16:29:30 +02:00
CODE_OF_CONDUCT.md add license 2022-10-14 21:34:18 +03:00
LICENSE add license 2022-10-14 21:34:18 +03:00
Makefile Update template with latest CI and QoL updates. 2025-06-20 14:07:06 -04:00
OWNERS.md Update OWNERS.md and add CODEOWNERS 2023-03-02 19:59:27 +03:00
README.md switch to xpkg.crossplane.io and use crossplane cli 2025-06-17 17:56:44 +02:00
go.mod Bump dependency versions 2024-10-07 14:45:48 +02:00
go.sum Bump dependency versions 2024-10-07 14:45:48 +02:00
renovate.json Add renovate.json 2023-12-28 17:24:46 +00:00

README.md

Provider Template

upjet-provider-template is a Crossplane provider that is built using Upjet code generation tools and exposes XRM-conformant managed resources for the Template API.

Getting Started

Install the provider by using the following command after changing the image tag to the latest release:

crossplane xpkg install provider xpkg.crossplane.io/upbound/upjet-provider-template:v0.1.0

Alternatively, you can use declarative installation:

cat <<EOF | kubectl apply -f -
apiVersion: pkg.crossplane.io/v1
kind: Provider
metadata:
  name: upjet-provider-template
spec:
  package: xpkg.crossplane.io/upbound/upjet-provider-template:v0.1.0
EOF

Notice that in this example Provider resource is referencing ControllerConfig with debug enabled.

You can see the API reference here.

Developing

Run code-generation pipeline:

go run cmd/generator/main.go "$PWD"

Run against a Kubernetes cluster:

make run

Build, push, and install:

make all

Build binary:

make build

Report a Bug

For filing bugs, suggesting improvements, or requesting new features, please open an issue.