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 #
- Ensure you have an HPE MSC Account required to obtain an enterprise key.
How to Obtain an Enterprise Key #
-
Log in to My HPE Software Center.
Use ChromeThis web portal works best with Chrome. -
Obtain the following details:
- SKU: The SKU for the product that matches what you have purchased.
sku description image registry url S3R04AAE Base License SW 1yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3r04aae S3R05AAE Performance License SW 1yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3r05aae S3R06AAE Base License SW 3yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3r06aae S3R07AAE Performance License SW 3yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3r07aae S3W26AAE Base License SW 4yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3w26aae S3W27AAE Performance License SW 4yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3w27aae S3W28AAE Base License SW 5yr E-RTU hub.myenterpriselicense.hpe.com/hpe-mlis/s3w28aae S3W29AAE Performance License SW 5yr E-RTU hub.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.
- SKU: The SKU for the product that matches what you have purchased.
-
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>
-
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>