HPE MSC Registry Secret

This guide explains how to generate a secret that enables access to the HPE MSC Docker Registry. This secret is required to download the Helm Chart and pull its images.

Before You Start


How to Obtain an Enterprise Key

  1. Log in to My HPE Software Center.

    warning icon Use Chrome
    This web portal works best with Chrome.

  2. Obtain the following details:

    • SKU: The SKU for the product that matches what you have purchased.
      sku description image registry url
      S3R04AAEBase License SW 1yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3r04aae
      S3R05AAEPerformance License SW 1yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3r05aae
      S3R06AAEBase License SW 3yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3r06aae
      S3R07AAEPerformance License SW 3yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3r07aae
      S3W26AAEBase License SW 4yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3w26aae
      S3W27AAEPerformance License SW 4yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3w27aae
      S3W28AAEBase License SW 5yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3w28aae
      S3W29AAEPerformance License SW 5yr E-RTUhub.myenterpriselicense.hpe.com/hpe-mlis/s3w29aae
    • HPE MSC Username: Your HPE MSC username.
    • HPE MSC MLIS License Key: Your HPE MSC MLIS license key.
    • HPE MSC User Email: Your HPE MSC user email.
  3. Create a secret for HPE MSC Docker Registry credentials using the information gathered in the previous step:

    kubectl create secret docker-registry hpe-mlis-registry \
       --docker-server=hub.myenterpriselicense.hpe.com/hpe-mlis/<SKU> \
       --docker-username=<HPE_MSC_USERNAME>  \
       --docker-password=<HPE_MSC_MLIS_LICENSE_KEY> \
       --docker-email=<HPE_MSC_USER_EMAIL> \
       -n <MLIS_DEPLOYMENT_K8s_NAMESPACE_OPTIONAL>
  4. Add the following to your helm install command:

    --set 'global.imagePullSecrets[0].name=hpe-mlis-registry' \ 
    --set imageRegistry=hub.myenterpriselicense.hpe.com/hpe-mlis/<SKU>