Node configuration

The node configuration file, found at config/paw.env, specifies information about the OpenShift® nodes that the installation needs.

The configuration file contains four environment variables: COPY_NODE, WORKER_NODES, STORAGE_NODES, and NFS_SERVER:

Example node configuration

#
        # If you are not employing a docker registry, specify the
        # host portion of the primary node URI returned from the
        # clusterInfo.sh script.
        #
        export COPY_NODE=()

        #
        # Specify the values of all worker nodes returned from the clusterInfo.sh script.
        # Space separated. e.g. (value1 value2 value3) where value is hostname of each worker.
        #
        export WORKER_NODES=()

        #
        # Specify the values of three of the nodes listed in the WORKER_NODES variable.
        # Space separated. e.g. (value1 value2 value3) where value is hostname of each worker.
        #
        export STORAGE_NODES=()

        #
        # Specify the IP address of the nfs server if employing nfs
        # based persistent volumes
        #
        export NFS_SERVER=()