apiVersion: v1
kind: Namespace
metadata:
name: hello
Volume populators enable the automatic pre-loading of data into a volume during dynamic provisioning, instead of provisioning an empty volume.
With volume populators, using the dataSourceRef field, you can prepopulate volumes from a Custom Resource Definition (CRD) instead of only persistent volume claims (PVCs) and snapshots.
In OKD versions 4.12 through 4.19, the dataSource field in a PVC spec provides volume populator capability. However, it is limited to using only PVCs and snapshots as the data source for populating volumes.
Starting with OKD version 4.20, the dataSourceRef field is used instead. With the dataSourceRef field, you can use any appropriate custom resource (CR) as the data source to prepopulate a new volume.
|
Volume populator functionality using the |
Volume population is enabled by default and OKD includes the installed volume-data-source-validator controller. However, OKD does not ship with any volume populators.
To implement custom volume prepopulation behavior, create a volume populator by defining a custom resource definition (CRD) and then using it to create prepopulated volumes.
To enable custom volume prepopulation, create a Custom Resource Definition (CRD) that defines a data source that users can instantiate to populate persistent volume claims (PVCs).
The following procedure explains how to create an example "hello, world" CRD for a volume populator.
Users can then create instances of this CRD to populate PVCs.
Access to the OKD web console.
Access to the cluster with cluster-admin privileges.
Create a namespace for the logical grouping and operation of the populator, and related resources, using the following example YAML file:
apiVersion: v1
kind: Namespace
metadata:
name: hello
Create a CRD for your data source using the following example YAML file:
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: hellos.hello.example.com
spec:
group: hello.example.com
names:
kind: Hello
listKind: HelloList
plural: hellos
singular: hello
scope: Namespaced
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: Hello is a specification for a Hello resource
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
spec:
description: HelloSpec is the spec for a Hello resource
properties:
fileContents:
type: string
fileName:
type: string
required:
- fileContents
- fileName
type: object
required:
- spec
type: object
served: true
storage: true
Deploy the controller by creating a ServiceAccount, ClusterRole, ClusterRoleBindering, and Deployment to run the logic that implements the population:
Create a service account for the populator using the following example YAML file:
apiVersion: v1
kind: ServiceAccount
metadata:
name: hello-account
namespace: hello
Where metadata.namespace references the namespace that you created earlier.
Create a cluster role for the populator using the following example YAML file:
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: hello-role
rules:
- apiGroups: [hello.example.com]
resources: [hellos]
verbs: [get, list, watch]
Create a cluster role binding using the following example YAML file:
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: hello-binding
subjects:
- kind: ServiceAccount
name: hello-account
namespace: hello
roleRef:
kind: ClusterRole
name: hello-role
apiGroup: rbac.authorization.k8s.io
metadata.name: Specifies the role binding name.
subjects.name: References the name of the service account that you created earlier.
subjects.namespace: References the name of the namespace for the service account that you created earlier.
roleRef.name: References the cluster role you created earlier.
Create a Deployment for the populator using the following example YAML file:
kind: Deployment
apiVersion: apps/v1
metadata:
name: hello-populator
namespace: hello
spec:
selector:
matchLabels:
app: hello
template:
metadata:
labels:
app: hello
spec:
serviceAccount: hello-account
containers:
- name: hello
image: registry.k8s.io/sig-storage/hello-populator:v1.0.1
imagePullPolicy: IfNotPresent
args:
- --mode=controller
- --image-name=registry.k8s.io/sig-storage/hello-populator:v1.0.1
- --http-endpoint=:8080
ports:
- containerPort: 8080
name: http-endpoint
protocol: TCP
metadata.namespace: References the namespace that you created earlier.
spec.template.spec.serviceAccount: References the service account that you created earlier.
Create a volume populator to register the kind:Hello resource as a valid data source for the volume using the following example YAML file:
kind: VolumePopulator
apiVersion: populator.storage.k8s.io/v1beta1
metadata:
name: hello-populator
sourceKind:
group: hello.example.com
kind: Hello
The metadata.name field specifies the Volume populator name.
PVCs that use an unregistered populator generate an event: "The datasource for this PVC does not match any registered VolumePopulator", indicating that the PVC might not be provisioned because you are using an unknown (unregistered) populator.
You can now create CR instances of this CRD to populate PVCs
For more information, see "Creating prepopulated volumes using volume populators".
To create volumes that are automatically filled with data when provisioned, define a Custom Resource Definition (CRD) as a data source and reference it when creating the persistent volume claim (PVC).
The following procedure explains how to create a prepopulated PVC using the example hellos.hello.example.com CRD created previously.
In this example, rather than using an actual data source, you are creating a file called "example.txt" that contains the string "Hello, world!" in the root directory of the volume. For a real-world implementation, you need to create your own volume populator.
You are logged in to a running OKD cluster.
There is an existing CRD for volume populators.
OKD does not ship with any volume populators. You must create your own volume populator.
Create a Custom Resource (CR) instance of the Hello CRD with the text "Hello, World!" passed in as fileContents parameter by running the following command:
$ oc apply -f - <<EOF
apiVersion: hello.example.com/v1alpha1
kind: Hello
metadata:
name: example-hello
spec:
fileName: example.txt
fileContents: Hello, world!
EOF
Create a PVC that references the Hello CR similar to the following example file:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: example-pvc
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Mi
dataSourceRef:
apiGroup: hello.example.com
kind: Hello
name: example-hello
volumeMode: Filesystem
spec.dataSourceRef: Specifies the data source for the PVC.
spec.dataSourceRef.name: Specifies the name of the CR that you are using as the data source. In this example, it is 'example-hello'.
After a few minutes, ensure that the PVC is created and in the Bound status by running the following command:
$ oc get pvc example-pvc -n hello
In this example, the name of the PVC is example-pvc.
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS VOLUMEATTRIBUTESCLASS AGE
example-pvc Bound my-pv 10Mi ReadWriteOnce gp3-csi <unset> 14s
Create a job that reads from the PVC to verify that the data source information was applied using the following example file:
apiVersion: batch/v1
kind: Job
metadata:
name: example-job
spec:
template:
spec:
containers:
- name: example-container
image: busybox:latest
command:
- cat
- /mnt/example.txt
volumeMounts:
- name: vol
mountPath: /mnt
restartPolicy: Never
volumes:
- name: vol
persistentVolumeClaim:
claimName: example-pvc
spec.template.spec.containers.command: Specifies the location and name of the file with the "Hello, world!" text. In this example, the location is "/mnt/example.txt".
spec.template.spec.volumes.persistentVolumeClaim: Specifies the name of the PVC you created in Step 2. In this example, it is example-pvc.
Start the job by running the following command:
$ oc run example-job --image=busybox --command -- sleep 30 --restart=OnFailure
pod/example-job created
Wait for the job, and all of its dependencies, to finish by running the following command:
$ oc wait --for=condition=Complete pod/example-job
Verify the contents collected by the job by running the following command:
$ oc logs job/example-job
Hello, world!
To remove custom volume prepopulation functionality, delete all volume populator resources in reverse order of creation.
Access to the OKD web console.
Access to the cluster with cluster-admin privileges.
To uninstall volume populators, delete in reverse order all objects installed in the following procedures:
"Creating prepopulated volumes using volume populators".
"Creating CRDs for volume populators".
Be sure to remove the VolumePopulator instance.