cnabquickstarts.azurecr.io/cnabarmdriver Image Documentation #1829
-
Hello, I am working on creating an Azure Marketplace listing that will kick off a CNAB installer. Thanks to @carolynvs , I was able to get past this issue which was the result of a stupid mistake I made. Since we are kicking off a CNAB installer from ACI, I have found the azure-cnab-quickstarts repo to be helpful. It seems that the approach taken in these quick start examples point to the That flow makes sense to me, but I am unable to find any documentation on the cnabarmdriver container. The reason I am looking for documentation is because I am unsure how to point that bootstrap container at my custom CNAB bundle that will likely be hosted outside of Azure Container Registry or a non public repo (I am currently using a public Docker Hub repo and it is working). More specifically, let’s say I host my CNAB porter container in my company's Harbor registry that is not public. How would I pass in the Harbor registry credentials so that the container can be pulled down? In Kubernetes I can set the imagePullSecrets value in the deployment spec so that the Kubernetes cluster can authenticate against Harbor (or any container registry). Is there something like that for the cnabarmdriver image? To summarize, I am am looking for any documentation on the I appreciate the help!
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@christianrowlands please take a look at https://github.com/deislabs/cnab-azure-driver . I believe that what you need to do is to set the environment variables |
Beta Was this translation helpful? Give feedback.
@christianrowlands please take a look at https://github.com/deislabs/cnab-azure-driver . I believe that what you need to do is to set the environment variables
CNAB_AZURE_REGISTRY_USERNAME
andCNAB_AZURE_REGISTRY_PASSWORD
. Let me know if this isn't what you need.