In some situations, the Smartfacts server has no access to the internet. In this case, it is not possible to download the needed software and images. This article describes which options we have to install Smartfacts in such scenarios.
...
Expand |
---|
title | Provide container images with a proxy container registry |
---|
|
Provide container images with a proxy container registryPlease contact your administrators to add the Smartfacts registry https://repo.mid.de to the proxy registry. Add login data to the proxy registryTo connect to your proxy registry you must insert the login information of the proxy registry in your values.yaml file. To do so, replace the placeholder in the following text and insert it into a file “registrylogin.txt” on the Smartfacts server. Code Block |
---|
{
"auths":
{
"<proxy registry name>" :
{
"username":"<username>",
"password":"<password>"
}
}
} |
Replace the placehoder <proxy registry name> with the name of your proxy registry without a protocoll (e.g. write “repo.yourcompany.com”, not “https://repo.yourcompany.com”) Replace the value of the fields “username” an “password” with the credentials for your proxy registry Save the file with filename “registrylogin.txt” convert the login info to base64 Code Block |
---|
cat registrylogin.txt | base64 -w0 > registrylogin.base64 |
In the file “values.yaml” add a new line below the line starting with “instance” with the content Code Block |
---|
repologin: "<content of file registrylogin.base64>" |
Replace the placehoder “<content of file registrylogin.txt>“ with the content of the file “registrylogin.base64” Make sure that the indentation at the begin of the line is exact the same as in the line above
delet the files “registrylogin.txt” and “registrylogin.base64”
|
...
Code Block |
---|
sudo helm upgrade --install --timeout 15m0s smartfacts ./smartfacts -f values.yaml -n smartfacts --create-namespace |
...