Installing HPE Ezmeral Data Fabric and Kubernetes Software on Separate Nodes

This section describes how to install the configuration files for the HPE Ezmeral Data Fabric for Kubernetes. In this configuration, Data Fabric and Kubernetes software must be installed on separate nodes.

To install the HPE Ezmeral Data Fabric for Kubernetes, you must download the configuration files and use the Kubernetes kubectl interface to install the namespace, RBAC, plug-in, and provisioner .yaml files.

Before Installation

Before installing the HPE Ezmeral Data Fabric for Kubernetes, note these preinstallation best practices:
  • You must install the configuration files in the order shown in the steps below. Using a different installation order can cause problems.
  • Ensure that all Kubernetes nodes use the same Linux distribution. For example, all nodes can be CentOS nodes, or all nodes can be Ubuntu nodes. But a cluster with a mixture of CentOS and Ubuntu nodes is not supported.
  • This procedure does not allow you to install the HPE Ezmeral Data Fabric for Kubernetes on a Kubernetes node that is also a node in a Data Fabric cluster. If a Kubernetes node already has Data Fabric software installed, installing the HPE Ezmeral Data Fabric for Kubernetes can cause issues with the running Data Fabric cluster. See Installing HPE Ezmeral Data Fabric and Kubernetes Software on the Same Nodes.
  • Do not install the Data Fabric client on a node where the volume plug-in configuration file is installed. The Data Fabric client can be installed on a node in the Kubernetes cluster, but it must be installed before the HPE Ezmeral Data Fabric for Kubernetes is installed on the same Kubernetes cluster.

Installation Steps

Use these steps to install the configuration files:
  1. Download the following configuration (.yaml) files from https://package.ezmeral.hpe.com/tools/KubernetesDataFabric/v<version>/ to a directory on a node in the Kubernetes cluster:

    File Description
    kdf-namespace.yaml Configuration file for the mapr-system namespace, under which all Data Fabric components are installed.
    kdf-rbac.yaml RBAC configuration file. This file enables the provisioner to call the Kubernetes APIs that it needs to function.
    • kdf-plugin-centos.yaml
    • kdf-plugin-ubuntu.yaml
    • kdf-plugin-azure.yaml1
    • kdf-plugin-openshift.yaml2
    • kdf-plugin-gke.yaml3
    Configuration files used to install the plug-in. Download the plug-in file that matches your environment. You can use the CentOS configuration file for Red Hat, CentOS, or SLES Kubernetes hosts.
    kdf-provisioner.yaml Configuration file used to install the provisioner inside the Kubernetes cluster.

    1Before installing the kdf-plugin-azure.yaml, see Azure AKS Considerations.

    2To install the kdf-plugin-openshift.yaml, see OpenShift Considerations.

    3To install the kdf-plugin-gke.yaml, see Google Kubernetes Engine (GKE) Considerations.

  2. In Kubernetes, use the kubectl create command with the -f option to create the namespace for the plug-in and provisioner:
    NOTE The examples in this procedure assume that you are running each kubectl create command from the directory containing the downloaded configuration files.
    kubectl create -f kdf-namespace.yaml
  3. In Kubernetes, use the kubectl create command with the -f option to install the RBAC file:
    NOTE Do not apply the RBAC file in OpenShift environments. See OpenShift Considerations.
    kubectl create -f kdf-rbac.yaml
  4. In the plug-in configuration file that you downloaded in step 1, set the Kubernetes service location and the FlexVolume plug-in path. To specify the Kubernetes service location, specify the external location and port of your API server. You can find the correct values by doing a kubectl config view and looking at the current context and then looking at the cluster selected for that context. This information is used to look up tickets:
    - name : KUBERNETES_SERVICE_LOCATION
      value: "changeme!:6443"
    If your Kubernetes environment has a nonstandard location for FlexVolume plug-ins (for example, Azure environments sometimes use a nonstandard location), specify the FLEXVOLUME_PLUGIN_PATH by changing the directory in the value: field:
    - name : FLEXVOLUME_PLUGIN_PATH
      value: "/usr/libexec/kubernetes/kubelet-plugins/volume/exec"
  5. Use the kubectl create command with the -f option to install the plug-in. The plug-in that you specify in the create command depends on your operating system environment:
    NOTE When you issue the kubectl create -f command, a daemon set copies the plug-in to every node in the Kubernetes cluster.
    kubectl create -f kdf-plugin-centos.yaml

    or

    kubectl create -f kdf-plugin-ubuntu.yaml

    or

    kubectl create -f kdf-plugin-azure.yaml

    or

    kubectl create -f kdf-plugin-openshift.yaml

    or

    kubectl create -f kdf-plugin-gke.yaml
  6. In Kubernetes, use the kubectl create command with the -f option to install the provisioner on a single node of the Kubernetes cluster. Kubernetes determines the node on which to install the provisioner.
    kubectl create -f kdf-provisioner.yaml
  7. To begin using the HPE Ezmeral Data Fabric for Kubernetes, see Kubernetes FlexVolume Driver Configuration.