Configure an internal image repository
Due to internal IT and security policies, you might need to host the MOSTLY AI container images in an internal repository.
For such cases, you need to edit the values.yaml
file in the Helm chart and specify the URL and path to the MOSTLY AI images.
You can find the configuration steps below. Complete before deploying.
Prerequisites
- Obtain the MOSTLY AI images from your Customer Success Engineer.
- Work with your IT team to host the images in an internal repository.
- Make sure that your Kubernetes cluster can access the internal image repository.
- Obtain the repository URL from your IT team.
- Obtain the image pull secret for your internal repository from your IT team.
Steps
- In the
MOSTLY_AI_Helm_charts
directory, edit thevalues.yaml
file. - In the
mostlyRegistry
line, set the internal MOSTLY AI images repository URL.values.yaml_customerInstallation: ... deploymentSettings: ... mostlyRegistry: &mostlyRegistry your.internal.image.registry.com/mostlyai ...
- Set the name of the secret to your repository in
global.image.mostlyPullSecret
.values.yaml... global: ... image: mostlyRegistry: *mostlyRegistry mostlyPullSecret: name-of-the-secret-to-your-repository ...
- Set
mostlyConfigurations.secrets.dockerConfig.create
tofalse
.values.yaml... mostlyConfigurations: secrets: dockerConfig: create: false
- Save the
values.yaml
file.
What's next
Check the deployment checklist for any additional configurations that might be required.
You can then continue with the deployment of MOSTLY AI.