Image Repository Configuration
Image Repository Properties describes the properties that configure access to the image repository hosting the MATRIXX images at your site. These are defined at the global level so that they are available to all sub-charts.
Property | Description |
---|---|
global.image.registry.name | The domain name and port of the image repository to use to obtain
images. The default value is localhost:32000 . |
global.image.registry.username | The username to use in the image repository credentials secret. The
default value is someone . |
global.image.registry.password | The password to use in the image repository credentials secret. The
default value is password . |
global.image.registry.pullPolicy | The imagePullPolicy to use when obtaining images for the pods. For more information, see the discussion about container images in Kubernetes documentation at the
Kubernetes website. The default value is Always . |
global.image.registry.pullSecretName | The name of the image repository credentials secret to use. The
default value is matrixx-docker-registry-creds . |
global.image.registry.createSecret | If set to true , then the image repository credentials secret is
created at installation. If set to false , it is assumed
that a secret with the name specified in pullSecretName
already exists in the namespace. The default value is
true . |
global.image.registry.useImagePullSecret | If set to false , the imagePullSecret property is not set in created Kubernetes resources. The default value is
true . |