From f53271cb87633f7620f29671e68ecf587a1d9f1e Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Wed, 31 May 2023 17:38:36 +0200 Subject: [PATCH] docs(api): container registry settings --- docs/content/reference/api.md | 71 +++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/docs/content/reference/api.md b/docs/content/reference/api.md index 0a51b0e..4747540 100644 --- a/docs/content/reference/api.md +++ b/docs/content/reference/api.md @@ -1010,6 +1010,15 @@ Defining the options for the deployed Tenant Control Plane as Deployment resourc NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
false + + registrySettings + object + + RegistrySettings allows to override the default images for the given Tenant Control Plane instance. It could be used to point to a different container registry rather than the public one.
+
+ Default: map[apiServerImage:kube-apiserver controllerManagerImage:kube-controller-manager registry:registry.k8s.io schedulerImage:kube-scheduler]
+ + false replicas integer @@ -9952,6 +9961,68 @@ ExtraArgs allows adding additional arguments to the Control Plane components, su +### TenantControlPlane.spec.controlPlane.deployment.registrySettings + + + +RegistrySettings allows to override the default images for the given Tenant Control Plane instance. It could be used to point to a different container registry rather than the public one. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeDescriptionRequired
apiServerImagestring +
+
+ Default: kube-apiserver
+
false
controllerManagerImagestring +
+
+ Default: kube-controller-manager
+
false
registrystring +
+
+ Default: registry.k8s.io
+
false
schedulerImagestring +
+
+ Default: kube-scheduler
+
false
tagSuffixstring + The tag to append to all the Control Plane container images. Optional.
+
false
+ + ### TenantControlPlane.spec.controlPlane.deployment.resources