A template for Upjet-based crossplane providers.
Go to file
Sergen Yalçın 7311f9f9ba
Merge pull request #104 from humoflife/fix/tests
fix EOF and root CRD
2025-03-04 21:26:27 +03:00
.github Merge pull request #86 from crossplane/renovate/actions-setup-go-5.x 2024-10-07 13:47:40 +02: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 Revisions after manual testing with the guide 2022-10-20 14:09:32 +03:00
examples-generated/null/v1alpha1 Default go version set to 1.21 2024-07-30 14:45:57 +02: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 bump up up version to 0.28.0 2024-08-02 17:13:34 +02:00
OWNERS.md Update OWNERS.md and add CODEOWNERS 2023-03-02 19:59:27 +03:00
README.md Replace github.com/upbound/upjet Go module dependency 2023-11-13 16:18:32 +03: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:

up ctp provider install 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: 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.