Skip to main content
Version: 3.1

Oracle disk encryption

The Oracle Block Volume service is a cloud-based storage service provided by Oracle Cloud Infrastructure (OCI) that enables you to create and manage block volumes, which are high-performance, persistent storage devices that can be attached to an instance in OCI.

Using the Oracle disk encryption feature, you can pass your own managed keys to Portworx, which will encrypt your cloud drives using those keys. The Oracle Block Volume service allows encrypting block volumes at rest (not active or being accessed by a compute instance), using the Advanced Encryption Standard (AES) algorithm with 256-bit encryption. To achieve this, you should:

  1. Create a custom encryption key.
  2. Use the key to encrypt disks.

Create a custom encryption key

To create a custom disk encryption key stored in the Vault service:

  1. Follow this procedure to create Oracle Vault service.

  2. Create a master encryption key using symmetric Advanced Encryption Standard (AES) algorithm with 256-bit encryption. Oracle Block Volume service only allows the AES algorithm for encrypting block devices. For more information, see Securing Block Volume.

  3. Create an IAM policy so that the Oracle Block Volume service can access the master encryption key stored in the Vault service. For more information, see Common Policies. For example, create an IAM policy with the following policy statement, replacing the target.key.id value with the OCID of your master encryption key.

    Allow service blockstorage, oke to use keys in compartment dev where target.key.id = 'ocid1.key.oc1.iad.b5r5xcpzaaazi.***'

Associate the encryption key with your StorageCluster

After creating the disk encryption key, perform the following procedure during Portworx installation:

  1. Create the ociapikey Kubernetes secret in the namespace, which you want to install Portworx:

    kubectl create secret generic ociapikey \
    --namespace kube-system \
    --from-file=oci_api_key.pem=oci_api_key.pem \
    --from-literal=PX_ORACLE_user_ocid="***" \
    --from-literal=PX_ORACLE_fingerprint="***”
  2. Specify the encryption key in the StorageCluster device spec:

    cloudStorage:
    deviceSpecs:
    - type=pv-10,size=150,kms=<ocid-of-encr-key>
  3. (Optional) Verify if the disks are encrypted with your managed keys:

    pxctl cloudrive list

    The (cmk) label in the output confirms that the specified disk is encrypted:

    px-do-not-delete-a08e9055-3c26-4533-893a-29330f3de598(data)(cmk)
note

If you provide an incorrect kms encryption key, Portworx installation will fail.

Was this page helpful?