Build and push your image to the location specified by CONTROLLER_IMAGE:
make docker-build docker-push CONTROLLER_IMAGE=<some-registry>/cluster-api-provider-vultr TAG=v0.0.1NOTE: This image ought to be published in the personal registry you specified. And it is required to have access to pull the image from the working environment. Make sure you have the proper permission to the registry if the above commands don’t work.
Install the CRDs into the cluster:
make installDeploy the Manager to the cluster with the image specified by CONTROLLER_IMAGE:
make deploy CONTROLLER_IMAGE=<some-registry>/cluster-api-provider-vultr TAG=v0.0.1
NOTE: If you encounter RBAC errors, you may need to grant yourself cluster-admin privileges or be logged in as admin.
Create instances of your solution You can apply the samples (examples) from the config/sample:
kubectl apply -k config/samples/Delete the APIs(CRDs) from the cluster:
make uninstallUnDeploy the controller from the cluster:
make undeployFollowing are the steps to build the installer and distribute this project to users.
- Build the installer for the image built and published in the registry:
make build-installer CONTROLLER_IMAGE=<some-registry>/cluster-api-provider-vultr:tagNOTE: The makefile target mentioned above generates an 'install.yaml' file in the dist directory. This file contains all the resources built with Kustomize, which are necessary to install this project without its dependencies.
- Using the installer
Users can just run kubectl apply -f to install the project, i.e.:
kubectl apply -f https://raw.githubusercontent.com/<org>/cluster-api-provider-vultr/<tag or branch>/dist/install.yamlNOTE: Run make help for more information on all potential make targets