The plain
provisioner is one of core RukPak provisioners
that knows how to interact with bundles of a particular format.
These plain+v0
bundles, or plain bundles, are simply container images containing a set of static Kubernetes YAML
manifests in a given directory. For more information on the plain+v0
format, see
the plain+v0 bundle spec.
The plain
provisioner is able to unpack a given plain+v0
bundle onto a cluster and then instantiate it, making the
content of the bundle available in the cluster. It does so by reconciling Bundle
and BundleDeployment
types that have
the spec.provisionerClassName
field set to core-rukpak-io-plain
. This field must be set to the correct provisioner
name in order for the plain
provisioner to see and interact with the bundle.
Supported source types for a plain bundle currently include the following:
Additional source types, such as a local volume are on the roadmap. These source types all present the same content, a directory containing a plain bundle, in a different ways.
⚠️ Anyone with the ability to create or update BundleDeployment objects can become cluster admin. It's important to limit access to this API via RBAC to only those that explicitly require access, as well as audit your bundles to ensure the content being installed on-cluster is as-expected and secure.
The plain
provisioner can install and make available a specific plain+v0
bundle in the cluster.
Simply create a BundleDeployment
resource that contains the desired specification of a Bundle resource.
The plain
provisioner will unpack the provided Bundle onto the cluster, and eventually make the content
available on the cluster.
apiVersion: core.rukpak.io/v1alpha1
kind: BundleDeployment
metadata:
name: my-bundle-deployment
spec:
provisionerClassName: core-rukpak-io-plain
template:
metadata:
labels:
app: my-bundle
spec:
source:
type: image
image:
ref: my-bundle@sha256:xyz123
provisionerClassName: core-rukpak-io-plain
Note: the generated Bundle will contain the BundleDeployment's metadata.Name as a prefix, followed by the hash of the provided template.
First, the Bundle will be in the Pending stage as the provisioner sees it and begins unpacking the referenced content:
$ kubectl get bundle my-bundle
NAME TYPE PHASE AGE
my-bundle image Pending 3s
Then eventually, as the bundle content is unpacked onto the cluster via the defined storage mechanism, the bundle status will be updated to Unpacked, indicating that all its contents have been stored on-cluster.
$ kubectl get bundle my-bundle
NAME TYPE PHASE AGE
my-bundle image Unpacked 10s
Now that the bundle has been unpacked, the provisioner is able to create the resources in the bundle on the cluster. These resources will be owned by the corresponding BundleDeployment. Creating the BundleDeployment on-cluster results in an InstallationSucceeded Phase if the application of resources to the cluster was successful.
$ kubectl get bundledeployment my-bundle-deployment
NAME ACTIVE BUNDLE INSTALL STATE AGE
my-bundle-deployment my-bundle InstallationSucceeded 11s
Note: Creation of more than one BundleDeployment from the same Bundle will likely result in an error.
To experiment with the plain
provisioner locally, take the following steps to
create a local kind cluster and deploy the provisioner onto it:
# Clone the repository
git clone https://github.com/operator-framework/rukpak
# Navigate to the repository
cd rukpak
# Start a local kind cluster then build and deploy the provisioner onto it
make run
From there, create some Bundles and BundleDeployment types to see the provisioner in action. For an example bundle to use, the combo operator is a good candidate.
Create the combo BundleDeployment referencing the desired combo Bundle configuration:
kubectl apply -f -<<EOF
apiVersion: core.rukpak.io/v1alpha1
kind: BundleDeployment
metadata:
name: combo
spec:
provisionerClassName: core-rukpak-io-plain
template:
metadata:
labels:
app: combo
spec:
provisionerClassName: core-rukpak-io-plain
source:
image:
ref: quay.io/operator-framework/combo-bundle:v0.0.1
type: image
EOF
A message saying that the BundleDeployment is created should be returned:
$ kubectl apply -f -<<EOF
...
EOF
bundledeployment.core.rukpak.io/combo created
Next, check the Bundle status via:
kubectl get bundle -l app=combo
Eventually the Bundle should show up as Unpacked:
$ kubectl get bundle -l app=combo
NAME TYPE PHASE AGE
combo-7cdc7d7d6d image Unpacked 10s
Check the BundleDeployment status to ensure that the installation was successful:
kubectl get bundledeployment combo
A successful installation will show InstallationSucceeded as the INSTALL STATE
:
$ kubectl get bundledeployment combo
NAME ACTIVE BUNDLE INSTALL STATE AGE
combo combo-7cdc7d7d6d InstallationSucceeded 10s
From there, check out the combo operator deployment and ensure that the operator is present on the cluster:
# Check the combo operator deployment
kubectl -n combo get deployments.apps combo-operator
# Check that the operator is present
kubectl -n combo get deployments.apps combo-operator -o yaml | grep 'image:' | xargs
The deployment should show that the operator is ready and available:
$ kubectl -n combo get deployments.apps combo-operator
NAME READY UP-TO-DATE AVAILABLE AGE
combo-operator 1/1 1 1 10s
$ kubectl -n combo get deployments.apps combo-operator -o yaml | grep 'image:' | xargs
image: quay.io/operator-framework/combo-operator:v0.0.1
This means the operator should be successfully installed.
The plain
provisioner continually reconciles BundleDeployment resources. Next, let's try deleting the combo deployment:
kubectl -n combo delete deployments.apps combo-operator
A message saying the deployment was deleted should be returned:
$ kubectl -n combo delete deployments.apps combo-operator
deployment.apps "combo-operator" deleted
The provisioner ensures that all resources required for the BundleDeployment to run are accounted for on-cluster. So if we check for the deployment again, it will be back on the cluster:
$ kubectl -n combo get deployments.apps combo-operator
NAME READY UP-TO-DATE AVAILABLE AGE
combo-operator 1/1 1 1 15s
Let's say the combo operator released a new patch version, and we want to upgrade to that version.
Note: Upgrading a BundleDeployment involves updating the desired Bundle template being referenced.
Update the existing combo
BundleDeployment resource and update the container image being referenced:
kubectl apply -f -<<EOF
apiVersion: core.rukpak.io/v1alpha1
kind: BundleDeployment
metadata:
name: combo
spec:
provisionerClassName: core-rukpak-io-plain
template:
metadata:
labels:
app: combo
spec:
provisionerClassName: core-rukpak-io-plain
source:
image:
ref: quay.io/operator-framework/combo-bundle:v0.0.2
type: image
EOF
Once the newly generated Bundle is reporting an Unpacked status, the BundleDeployment combo
resource should now
point to the new Bundle (now named combo-7ddfd9fcd5
instead of combo-7cdc7d7d6d
previously). The combo-operator
deployment in the combo namespace should also be healthy and contain a new container image:
$ kubectl get bundles -l app=combo
NAME TYPE PHASE AGE
combo-7ddfd9fcd5 image Unpacked 10s
$ kubectl get bundledeployment combo
NAME ACTIVE BUNDLE INSTALL STATE AGE
combo combo-7ddfd9fcd5 InstallationSucceeded 10s
$ kubectl -n combo get deployment
NAME READY UP-TO-DATE AVAILABLE AGE
combo-operator 1/1 1 1 10s
$ kubectl -n combo get deployments.apps combo-operator -o yaml | grep 'image:' | xargs
image: quay.io/operator-framework/combo-operator:v0.0.2
Notice that the container image has changed to v0.0.2
since we first installed the combo operator.
To clean up from the installation, simply remove the BundleDeployment from the cluster. This will remove all references resources including the deployment, RBAC, and the operator namespace.
Note: There's no need to manually clean up the Bundles that were generated from a BundleDeployment resource. The plain provisioner places owner references on any Bundle that's generated from an individual BundleDeployment resource.
# Delete the combo BundleDeployment
kubectl delete bundledeployments.core.rukpak.io combo
A message should show that the BundleDeployment was deleted and now the cluster state is the same as it was prior to installing the operator.
$ kubectl delete bundledeployments.core.rukpak.io combo
bundledeployment.core.rukpak.io "combo" deleted
To stop and clean up the kind cluster, delete it:
# Clean up kind cluster
make kind-cluster-cleanup