Space Helm Chart Reference
This reference provides detailed documentation on the Upbound Space Helm chart. This Helm chart contains configuration values for installation, configuration, and management of an Upbound Space deployment.
Key | Type | Default | Description |
---|---|---|---|
account | string | "notdemo" | The Upbound organization this installation is associated with. |
api.extraVolumes | list | [] | Additional volumes to be added to the API pods. |
api.insecure | bool | false | Disable TLS at the endpoints |
api.podAnnotations | object | {} | Annotations to be added to the API pods. |
api.podLabels | object | {} | Labels to be added to the API pods. |
api.podSecurityContext | object | {} | Pod security context for the API pods. |
api.prometheus.podMonitor.enabled | bool | false | This enables the PodMonitor for the spaces API deployment. |
api.prometheus.podMonitor.interval | string | "30s" | The interval at which the PodMonitor scrapes metrics. |
api.proxy.command | list | [] | Command to run for the API proxy container. |
api.proxy.extraArgs | list | [] | Additional arguments to pass to the API proxy container. |
api.proxy.extraEnv | list | [] | Additional environment variables to pass to the API proxy container. |
api.proxy.extraVolumeMounts | list | [] | Additional volume mounts to pass to the API proxy container. |
api.proxy.image.pullPolicy | string | "IfNotPresent" | Image pull policy for the API proxy container image. |
api.proxy.image.repository | string | "hyperspace" | Repository for the API proxy container image. |
api.proxy.image.tag | string | "" | Tag for the API proxy container image. |
api.proxy.resources.limits.cpu | string | "1000m" | CPU limit for the API proxy container. |
api.proxy.resources.limits.memory | string | "200Mi" | Memory limit for the API proxy container. |
api.proxy.resources.requests.cpu | string | "100m" | CPU request for the API proxy container. |
api.proxy.resources.requests.memory | string | "50Mi" | Memory request for the API proxy container. |
api.proxy.service.api.port | int | 8443 | Port for the API proxy API service. |
api.proxy.service.metrics.port | int | 8085 | Port for the API proxy metrics service. |
api.proxy.service.type | string | "ClusterIP" | Type for the API proxy service. |
api.replicaCount | int | 1 | Number of replicas for the spaces API deployment. |
api.secretRefs.tlsSecretName | string | "spaces-api-cert" | Name of the secret containing the TLS Certificate for the API. |
api.secretRefs.tokenSigning | string | "cert-token-signing-gateway" | Name of the secret containing the Certificate Authority for the spaces API, used to sign tokens for control plane kubeconfigs. |
api.serviceAccount.annotations | object | {} | Annotations to be added to the service account used by the spaces API deployment. |
api.serviceAccount.create | bool | true | Whether to create a service account for the spaces API deployment. |
api.serviceAccount.name | string | "mxe-api" | Name of the service account used by the spaces API deployment. |
authentication.hubIdentities | bool | true | This enables respecting built in Kubernetes identities (clientcertificate, managed kubernetes OIDC, Kubernetes Groups, etc) specified within the Connected Space’s hub. |
authentication.structuredConfig | string | "" | Enables consumption of JWT Authenticators via Authentication Configuration per https://kubernetes.io/docs/reference/access-authn-authz/authentication/#using-authentication-configuration The below property takes the name of a configmap that contains a structured authentication configuration. |
authorization.hubRBAC | bool | true | This enables respecting built in Kubernetes Roles and RoleBindings for the resources included in the Space’s installation. |
billing.enabled | bool | false | This enables billing services. |
billing.storage.aws.bucket | string | "" | AWS bucket name. See billing.storage.secretRef for authentication. Required if billing.storage.provider=aws. |
billing.storage.aws.endpoint | string | "" | AWS endpoint. |
billing.storage.aws.region | string | "" | AWS region. Required if billing.storage.provider=aws. |
billing.storage.aws.tls.“ca.crt” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.aws.tls.“tls.crt” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.aws.tls.“tls.key” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.aws.tls.alpnProtocols | list | [] | List of Application Layer Protocol Negotiation (ALPN) to use for the AWS endpoint. |
billing.storage.aws.tls.verifyCertificate | bool | true | Whether to verify the certificate for the AWS endpoint. |
billing.storage.aws.tls.verifyHostname | bool | true | Whether to verify the hostname for the AWS endpoint. |
billing.storage.azure.connectionString | string | "" | Connection string for the Azure storage account. |
billing.storage.azure.container | string | "" | Azure container name. Required if billing.storage.provider=azure. |
billing.storage.azure.endpoint | string | "" | Azure endpoint. |
billing.storage.azure.storageAccount | string | "" | Azure storage account name. |
billing.storage.gcp.bucket | string | "" | GCP gcs bucket name. Required if billing.storage.provider=gcp. |
billing.storage.gcp.tls.“ca.crt” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.gcp.tls.“tls.crt” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.gcp.tls.“tls.key” | bool | false | See billing.storage.secretRef. Set to true if the corresponding key is defined in the secret referenced by billing.storage.secretRef.name. |
billing.storage.gcp.tls.alpnProtocols | list | [] | Application Layer Protocol Negotiation (ALPN) to use for the GCP endpoint. |
billing.storage.gcp.tls.verifyCertificate | bool | true | Whether to verify the certificate for the GCP endpoint. |
billing.storage.gcp.tls.verifyHostname | bool | true | Whether to verify the hostname for the GCP endpoint. |
billing.storage.provider | string | "" | The provider for the billing storage. Required if billing.enabled=true. Must be one of aws, gcp, azure |
billing.storage.secretRef.name | string | "billing-storage" | Set to the empty string in order to use a workload identity for the billing feature. If you are configuring the billing feature with static credentials for accessing the cloud object storage, then the secret may contain any of these keys for configuring authentication: AWS_ACCESS_KEY_ID: AWS access key ID. Used when provider is aws. AWS_SECRET_ACCESS_KEY: AWS secret access key. Used when provider is aws. AZURE_TENANT_ID: Azure tenant ID. Used when provider is azure. AZURE_CLIENT_ID: Azure client ID. Used when provider is azure. AZURE_CLIENT_SECRET: Azure client secret. Used when provider is azure. AZURE_USERNAME: Azure username. Used when provider is azure. AZURE_PASSWORD: Azure username. Used when provider is azure. google_application_credentials: GCP service account key JSON. Used when provider is gcp. The secret may also contain any of the following keys for configuring TLS. The corresponding value at billing.storage. “ca.crt”: Custom CA certificate. Used when provider is aws or gcp. “tls.crt”: Custom TLS certificate. Used when provider is aws or gcp. “tls.key”: Custom TLS key. Used when provider is aws or gcp. |
certificates | object | "" | Given cert-manager is a requirement for installation, certificates specifies the general configurations for the certificates required for the installation to function. |
certificates.clusterResourceNamespace | string | "cert-manager" | Specifies the cluster resource namespace for the cert-manager installation. https://cert-manager.io/docs/configuration/#cluster-resource-namespace |
certificates.provision | bool | true | Specifies if the chart should provision the certificate resources included in this chart. Operators can opt to provision their own certificates instead, however care should be made to ensure the certificates match the expected: * Shared Certificate Authority * Algorithm. (ECDSA) |
certificates.space.clusterIssuer | string | "spaces-selfsigned" | The clusterIssuer for the space. Most certificates used at the space level are derived from this issuer. |
connect | object | {"agent":{"podLabels":{}}} | Configurations for requests coming into the space via the connect agent. |
connect.agent | object | {"podLabels":{}} | Connect agent related configurations. |
connect.agent.podLabels | object | {} | Labels that are defined on the connect agent pod. Default value is: app: agent |
controlPlanes.api.resources.limits.cpu | string | "2000m" | CPU limit for the spaces control plane API. |
controlPlanes.api.resources.requests.cpu | string | "100m" | CPU request for the spaces control plane API. |
controlPlanes.api.resources.requests.memory | string | "1000Mi" | Memory request for the spaces control plane API. |
controlPlanes.container.mxpCharts.pullPolicy | string | "IfNotPresent" | Image pull policy for the mxp-charts container image. |
controlPlanes.container.mxpCharts.repository | string | "mxp-charts" | Repository for the mxp-charts container image. |
controlPlanes.container.mxpCharts.tag | string | "" | Tag for the mxp-charts container image. |
controlPlanes.container.mxpGateway.pullPolicy | string | "IfNotPresent" | Image pull policy for the mxp-gateway container image. |
controlPlanes.container.mxpGateway.repository | string | "hyperspace" | Repository for the mxp-gateway container image. |
controlPlanes.container.mxpGateway.tag | string | "" | Tag for the mxp-gateway container image. |
controlPlanes.container.mxpKsmConfig.pullPolicy | string | "IfNotPresent" | Image pull policy for the mxp controller container image. |
controlPlanes.container.mxpKsmConfig.repository | string | "hyperspace" | Repository for the mxp controller container image. |
controlPlanes.container.mxpKsmConfig.tag | string | "" | Tag for the mxp controller container image. |
controlPlanes.controller.resources.requests.cpu | string | "50m" | CPU request for the spaces control plane controller. |
controlPlanes.controller.resources.requests.memory | string | "170Mi" | Memory request for the spaces control plane controller. |
controlPlanes.coredns.resources.limits.cpu | string | "50m" | CPU limit for the spaces control plane CoreDNS pod. |
controlPlanes.coredns.resources.limits.memory | string | "50Mi" | Memory limit for the spaces control plane CoreDNS pod. |
controlPlanes.coredns.resources.requests.cpu | string | "10m" | CPU request for the spaces control plane CoreDNS pod. |
controlPlanes.coredns.resources.requests.memory | string | "25Mi" | Memory request for the spaces control plane CoreDNS pod. |
controlPlanes.etcd.persistence.size | string | "5Gi" | Size of the control plane’s etcd PVCs. |
controlPlanes.etcd.persistence.storageClassName | string | "" | StorageClass name for control plane’s etcd PVCs. |
controlPlanes.etcd.resources.limits.cpu | string | nil | CPU limit for the spaces control plane etcd pod. |
controlPlanes.etcd.resources.limits.memory | string | nil | Memory limit for the spaces control plane etcd pod. |
controlPlanes.etcd.resources.requests.cpu | string | "170m" | CPU request for the spaces control plane etcd pod. |
controlPlanes.etcd.resources.requests.memory | string | "350Mi" | Memory request for the spaces control plane etcd pod. |
controlPlanes.gateway.podLabels | object | {} | Labels to be added to the control plane gateway pods. |
controlPlanes.gateway.port | int | 8443 | Port for the control plane gateway service. |
controlPlanes.gateway.resources.limits | object | {"cpu":null,"memory":null} | Limits for the spaces control plane gateway pod. |
controlPlanes.gateway.resources.limits.cpu | string | nil | CPU limit for the spaces control plane gateway pod. |
controlPlanes.gateway.resources.limits.memory | string | nil | Memory limit for the spaces control plane gateway pod. |
controlPlanes.gateway.resources.requests.cpu | string | "10m" | CPU request for the spaces control plane gateway pod. |
controlPlanes.gateway.resources.requests.memory | string | "25Mi" | Memory request for the spaces control plane gateway pod. |
controlPlanes.ha.enabled | bool | false | This enables the High Availability (HA) feature for the spaces control planes. Resulting in various control planes components being deployed in ha mode for all control planes. |
controlPlanes.imagePullSecrets | list | [] | Optional image pull secret in upbound-system namespace to be used with an authenticated registry when pulling images for workloads in the virtual clusters of ControlPlanes. If not specified, the default behavior of propagating the optional secret specified in .imagePullSecrets down to the ControlPlanes is preserved. The specified secret in upbound-system namespace will be propagated with the name upbound-system-pull-secret into the virtual cluster. NOTE: only one image pull secret is currently supported. |
controlPlanes.k8sVersion | string | "v1.31.0" | |
controlPlanes.kubeStateMetrics.resources.limits.cpu | string | nil | CPU limit for the spaces control plane kube-state-metrics pod. |
controlPlanes.kubeStateMetrics.resources.limits.memory | string | nil | Memory limit for the spaces control plane kube-state-metrics pod. |
controlPlanes.kubeStateMetrics.resources.requests.cpu | string | "100m" | CPU request for the spaces control plane kube-state-metrics pod. |
controlPlanes.kubeStateMetrics.resources.requests.memory | string | "50Mi" | Memory request for the spaces control plane kube-state-metrics pod. |
controlPlanes.mxpController.pod.customLabels | object | {} | Custom labels to be added to the mxp-controller pod. |
controlPlanes.mxpController.serviceAccount.annotations | object | {} | Custom annotations to be added to the service account for the mxp-controller deployment. |
controlPlanes.mxpKSMConfig.resources.limits.cpu | string | nil | CPU limit for the spaces control plane controller. |
controlPlanes.mxpKSMConfig.resources.limits.memory | string | nil | Memory limit for the spaces control plane controller. |
controlPlanes.mxpKSMConfig.resources.requests.cpu | string | "100m" | CPU request for the spaces control plane controller. |
controlPlanes.mxpKSMConfig.resources.requests.memory | string | "50Mi" | Memory request for the spaces control plane controller. |
controlPlanes.policies.limitRange.enabled | bool | true | Whether to deploy default LimitRange policies for the control planes. |
controlPlanes.sharedSecrets.pod.customLabels | object | {} | Custom labels to be added to the external-secrets-operator pod in the ControlPlane host namespace. |
controlPlanes.sharedSecrets.serviceAccount.customAnnotations | object | {} | Custom annotations to be added to the service account for the external-secrets-operator deployment. |
controlPlanes.syncer.extraSyncLabels | string | "" | Extra pod labels to be synced by the vcluster syncer. This is a string consisting of a comma-separated list of label keys. |
controlPlanes.syncer.resources.limits.cpu | string | "1000m" | CPU limit for the spaces control plane syncer pod. |
controlPlanes.syncer.resources.limits.memory | string | "1024Mi" | Memory limit for the spaces control plane syncer pod. |
controlPlanes.syncer.resources.requests.cpu | string | "20m" | CPU request for the spaces control plane vcluster syncer pod. |
controlPlanes.syncer.resources.requests.memory | string | "150Mi" | CPU request for the spaces control plane vcluster syncer pod. |
controlPlanes.uxp.enableCompositionFunctions | bool | true | This enables Composition Functions. |
controlPlanes.uxp.enableDependencyVersionUpgrades | bool | false | This enables dependency version upgrades for Crossplane packages. |
controlPlanes.uxp.enableEnvironmentConfigs | bool | true | This enables EnvironmentConfigs. |
controlPlanes.uxp.enableProviderIdentity | bool | false | This enables the provider identity feature. |
controlPlanes.uxp.enableSSAClaims | bool | false | This enables the server-side apply for claims. |
controlPlanes.uxp.enableSignatureVerification | bool | false | This enables Crossplane Packages signature verification. |
controlPlanes.uxp.enableUsages | bool | true | This enables Usages. |
controlPlanes.uxp.metrics.enabled | bool | true | This enables the metrics endpoints UXP. |
controlPlanes.uxp.registryOverride | string | "" | Override the default package registry for Crossplane images. |
controlPlanes.uxp.resourcesCrossplane.limits.cpu | string | nil | CPU limit for the spaces control plane UXP pod. |
controlPlanes.uxp.resourcesCrossplane.limits.memory | string | nil | Memory limit for the spaces control plane UXP pod. |
controlPlanes.uxp.resourcesCrossplane.requests.cpu | string | "370m" | CPU request for the spaces control plane UXP pod. |
controlPlanes.uxp.resourcesCrossplane.requests.memory | string | "400Mi" | Memory request for the spaces control plane UXP pod. |
controlPlanes.uxp.resourcesRBACManager.limits.cpu | string | "50m" | CPU limit for the spaces control plane UXP RBAC Manager pod. |
controlPlanes.uxp.resourcesRBACManager.limits.memory | string | "300Mi" | Memory limit for the spaces control plane UXP RBAC Manager pod. |
controlPlanes.uxp.resourcesRBACManager.requests.cpu | string | "25m" | CPU request for the spaces control plane UXP RBAC Manager pod. |
controlPlanes.uxp.resourcesRBACManager.requests.memory | string | "256Mi" | Memory request for the spaces control plane UXP RBAC Manager pod. |
controlPlanes.uxp.serviceAccount.customAnnotations | object | {} | Custom annotations to be added to the service account for the UXP deployment. |
controlPlanes.uxp.xgql.enabled | bool | true | Whether the xgql service should be deployed. Required for connected spaces. |
controlPlanes.uxp.xgql.replicas | int | 1 | Number of replicas for the xgql deployment. |
controlPlanes.uxp.xgql.resources.limits.cpu | string | "500m" | CPU limit for the spaces control plane xgql pod. |
controlPlanes.uxp.xgql.resources.limits.memory | string | "1Gi" | Memory limit for the spaces control plane xgql pod. |
controlPlanes.uxp.xgql.resources.requests.cpu | string | "50m" | CPU request for the spaces control plane xgql pod. |
controlPlanes.uxp.xgql.resources.requests.memory | string | "50Mi" | Memory request for the spaces control plane xgql pod. |
controlPlanes.uxp.xgql.version | string | "v0.2.0-rc.0.167.gb4b3e68" | The tag of the xgql image to deploy. |
controlPlanes.vector.affinity | object | {} | Configure affinity rules for Vector Pods. |
controlPlanes.vector.debug | bool | false | This enables debug mode for Vector. |
controlPlanes.vector.enabled | bool | true | This enables Vector for the control plane. |
controlPlanes.vector.nodeSelector | object | {} | Configure a nodeSelector for Vector Pods. |
controlPlanes.vector.persistence.enabled | bool | false | Set enabled to true to run Vector as a statefulset with each replica backed by a persistent volume and enable disk buffers for selected sinks. When set to false, Vector is run as a deployment with memory buffers. |
controlPlanes.vector.persistence.size | string | "1Gi" | Size must be at least the sum of all buffer.maxSize values with overhead for other Vector data. If you define this you should also define all sink buffer.maxSize values. |
controlPlanes.vector.persistence.storageClassName | string | "" | StorageClass name to be used for Vector’s PVCs. |
controlPlanes.vector.pod.customLabels | object | {} | Custom labels to be added to the vector pod. |
controlPlanes.vector.replicas | int | 1 | Number of replicas for the Vector deployment. |
controlPlanes.vector.resources.limits.cpu | string | nil | CPU limit for the spaces control plane Vector pod. |
controlPlanes.vector.resources.limits.memory | string | nil | Memory limit for the spaces control plane Vector pod. |
controlPlanes.vector.resources.requests.cpu | string | "200m" | CPU request for the spaces control plane Vector pod. |
controlPlanes.vector.resources.requests.memory | string | "256Mi" | Memory request for the spaces control plane Vector pod. |
controlPlanes.vector.service.enabled | bool | false | Whether to expose the Vector service. |
controlPlanes.vector.serviceAccount.customAnnotations | object | {} | Custom annotations to be added to the service account for the Vector deployment. |
controlPlanes.vector.sinks.usage.buffer.maxEvents | int | 500 | String containing max number of events to buffer in memory. Relevant when mxp.vector.persistence.enabled=false. |
controlPlanes.vector.sinks.usage.buffer.maxSize | int | 268435488 | String containing max size of disk buffer in bytes. Must fit with other buffer.maxSize values in mxp.vector.persistence.size. Relevant when mxp.vector.persistence.enabled=true. ~256 MiB, minimum allowed |
controlPlanes.vector.tolerations | list | [] | Configure Vector Pods to be scheduled on tainted nodes. |
controlPlanes.vector.topologySpreadConstraints | list | [] | Configure topology spread constraints for Vector Pods. Valid for the “Aggregator” and “Stateless-Aggregator” roles. |
controlPlanes.vector.version | string | "0.36.1" | Version of Vector to deploy. |
controller.controller.command | list | [] | The command to run for the spaces controller. |
controller.controller.extraArgs | list | [] | Additional arguments to pass to the spaces controller. |
controller.controller.extraEnv | list | [] | Additional environment variables to pass to the spaces controller. |
controller.controller.extraVolumeMounts | list | [] | Additional volume mounts to pass to the spaces controller. |
controller.controller.image.pullPolicy | string | "IfNotPresent" | The pull policy for the spaces controller image. |
controller.controller.image.repository | string | "hyperspace" | The repository for the spaces controller image. |
controller.controller.image.tag | string | "" | The tag for the spaces controller image. |
controller.controller.podDisruptionBudget.enabled | bool | false | This enables the PodDisruptionBudget for the spaces controller deployment. |
controller.controller.podDisruptionBudget.maxUnavailable | string | nil | The maximum number of unavailable pods for the PodDisruptionBudget. Only one of maxUnavailable or minAvailable can be set. |
controller.controller.podDisruptionBudget.minAvailable | string | nil | The minimum number of available pods for the PodDisruptionBudget. Only one of maxUnavailable or minAvailable can be set. |
controller.controller.resources.limits.cpu | string | "1000m" | CPU limit for the spaces controller. |
controller.controller.resources.limits.memory | string | "2000Mi" | Memory limit for the spaces controller. |
controller.controller.resources.requests.cpu | string | "100m" | CPU request for the spaces controller. |
controller.controller.resources.requests.memory | string | "500Mi" | Memory request for the spaces controller. |
controller.controller.service.metrics.port | int | 8085 | The port for the spaces controller metrics service. |
controller.controller.service.type | string | "ClusterIP" | |
controller.controller.service.webhook.port | int | 9443 | The port for the spaces controller webhook service. |
controller.controller.verticalPodAutoscaler.enabled | bool | false | This enables the VerticalPodAutoscaler for the spaces controller deployment. |
controller.controller.verticalPodAutoscaler.updateMode | string | "Auto" | The mode for the VerticalPodAutoscaler. |
controller.crossplane.supportedVersions | list | ["1.16.0-up.1","1.16.2-up.2","1.16.4-up.1","1.17.1-up.1","1.17.3-up.1","1.18.0-up.1"] | List of supported Crossplane versions, will be automatically updated by the versionsController, if enabled. |
controller.crossplane.versionsController.enabled | bool | true | This flag enables the versionsController. When set to true, the controller will manage Crossplane versions configmap. If disabled, default behavior will be supportedVersions will applied without automatic updates. |
controller.extraVolumes | list | [] | Extra volumes to be added to the spaces controller pods. |
controller.kcp.enabled | bool | false | Whether spaces controller should be KCP aware. |
controller.mxeInit.extraArgs | list | [] | Additional arguments to pass to the spaces controller init container. |
controller.mxeInit.extraEnv | list | [] | Additional environment variables to pass to the spaces controller init container. |
controller.mxeInit.extraVolumeMounts | list | [] | Additional volume mounts to pass to the spaces controller init container. |
controller.mxeInit.image.pullPolicy | string | "IfNotPresent" | The image pull policy for the spaces controller init container image. |
controller.mxeInit.image.repository | string | "hyperspace" | The repository for the spaces controller init container image. |
controller.mxeInit.image.tag | string | "" | The tag for the spaces controller init container image. |
controller.podAnnotations | object | {} | Annotations to be added to the spaces controller pods. |
controller.podSecurityContext | object | {} | Pod security context for the spaces controller. |
controller.prometheus.podMonitor.enabled | bool | false | This enables the PodMonitor for the spaces controller deployment. |
controller.prometheus.podMonitor.interval | string | "30s" | The interval at which the PodMonitor scrapes metrics. |
controller.replicaCount | int | 1 | Number of replicas for the spaces controller deployment. |
controller.secretRefs.adminSigning | string | "cert-admin-signing" | Name of the secret containing the Certificate Authority for the spaces controller, used to sign tokens for control plane kubeconfigs. |
controller.secretRefs.ingressCA | string | "spaces-router-tls" | Name of the secret containing the Ingress CA. |
controller.serviceAccount.annotations | object | {} | Annotations to be added to the service account used by the spaces controller deployment. |
controller.serviceAccount.create | bool | true | Whether to create a service account for the spaces controller deployment. |
controller.serviceAccount.name | string | "" | The name of the service account used by the spaces controller deployment. |
controller.webhookInit.extraArgs | list | [] | Additional arguments to pass to the spaces controller webhook init container. |
controller.webhookInit.extraEnv | list | [] | Additional environment variables to pass to the spaces controller webhook init container. |
controller.webhookInit.extraVolumeMounts | list | [] | Additional volume mounts to pass to the spaces controller webhook init container. |
controller.webhookInit.image.pullPolicy | string | "IfNotPresent" | The image pull policy for the spaces controller webhook init container image. |
controller.webhookInit.image.repository | string | "hyperspace" | The repository for the spaces controller webhook init container image. |
controller.webhookInit.image.tag | string | "" | The tag for the spaces controller webhook init container image. |
development | object | {} | Development only configurations, not for production use. @schema additionalProperties: true @schema |
features.alpha | object | { … } | NOTE: Alpha features are subject to removal or breaking changes without notice, and generally not considered ready for use in production. They have to be optional even if they are enabled. |
features.alpha.apollo | object | { … } | Configurations for the apollo deployment. |
features.alpha.apollo.apiserver.command | list | [] | Command for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.extraArgs | list | [] | Additional arguments to be added to the apollo apiserver deployment. |
features.alpha.apollo.apiserver.extraEnv | list | [] | Additional environment variables to be added to the apollo apiserver deployment. |
features.alpha.apollo.apiserver.image.pullPolicy | string | "IfNotPresent" | Image pull policy for the apollo apiserver image. |
features.alpha.apollo.apiserver.image.repository | string | "hyperspace" | Repository for the apollo apiserver image. |
features.alpha.apollo.apiserver.image.tag | string | "" | Tag for the apollo apiserver image. |
features.alpha.apollo.apiserver.replicaCount | int | 1 | The number of replicas for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.resources.limits.cpu | string | "1000m" | CPU limit for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.resources.limits.memory | string | "500Mi" | Memory limit for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.resources.requests.cpu | string | "100m" | CPU request for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.resources.requests.memory | string | "200Mi" | Memory request for the apollo apiserver deployment. |
features.alpha.apollo.apiserver.service.api.port | int | 8443 | Port for the apollo apiserver service. |
features.alpha.apollo.apiserver.service.metrics.port | int | 8085 | Port for the apollo apiserver metrics service. |
features.alpha.apollo.apiserver.service.type | string | "ClusterIP" | Type of service for the apollo apiserver service. |
features.alpha.apollo.enabled | bool | false | This enables the apollo feature. |
features.alpha.apollo.podAnnotations | object | {} | Annotations to be added to the apollo apiserver pods. |
features.alpha.apollo.podLabels | object | {} | Labels to be added to the apollo apiserver pods. |
features.alpha.apollo.podSecurityContext | object | {} | Pod security context for the apollo deployment. |
features.alpha.apollo.prometheus.podMonitor.enabled | bool | false | This enables the Prometheus pod monitor for the apollo deployment. |
features.alpha.apollo.prometheus.podMonitor.interval | string | "30s" | The interval at which metrics should be scraped. |
features.alpha.apollo.replicaCount | int | 1 | Number of replicas for the apollo apiserver deployment. |
features.alpha.apollo.secretRefs.tlsSecretName | string | "spaces-apollo-cert" | Name of the secret containing the apollo server’s TLS certificate. |
features.alpha.apollo.serviceAccount.annotations | object | {} | Annotations to be added to the apollo service account, if created. |
features.alpha.apollo.serviceAccount.create | bool | true | Whether to create a service account for the apollo deployment. |
features.alpha.apollo.serviceAccount.name | string | "mxe-apollo" | The name of the service account to be created. Expected to exist if create is set to false. |
features.alpha.apollo.storage.postgres.cnpg | object | { … } | Configuration for the PostgreSQL cluster and PGBouncer pooler managed by CloudNativePG, only respected if create is set to true. |
features.alpha.apollo.storage.postgres.cnpg.cluster.debug | bool | false | Setting the cluster to log at debug level, sets up PgAudit and other useful extensions for debugging. |
features.alpha.apollo.storage.postgres.cnpg.cluster.imageName | string | "ghcr.io/cloudnative-pg/postgresql:16" | Image to be used for the cluster, if not specified the default image according to the CloudNativePG operator installed version will be used. |
features.alpha.apollo.storage.postgres.cnpg.cluster.instances | int | 2 | Number of instances in the postgres cluster. |
features.alpha.apollo.storage.postgres.cnpg.cluster.parameters | object | {"max_connections":"100"} | The Postgres configuration, see Postgres documentation for all available options and CloudNativePG for all allowed ones. Tune the suggested parameters as needed. |
features.alpha.apollo.storage.postgres.cnpg.cluster.storage.pvcTemplate | object | {} | A full PVC template for the PVCs used by the cluster. |
features.alpha.apollo.storage.postgres.cnpg.cluster.storage.size | string | "5Gi" | The size of the PVCs for the cluster. |
features.alpha.apollo.storage.postgres.cnpg.cluster.storage.storageClass | string | "" | The storage class to use for the cluster’s PVCs. |
features.alpha.apollo.storage.postgres.cnpg.pooler | object | "" | The pooler configuration for the cluster. |
features.alpha.apollo.storage.postgres.cnpg.pooler.debug | bool | false | Whether the pooler should log at debug level. |
features.alpha.apollo.storage.postgres.cnpg.pooler.enabled | bool | true | Whether the pooler should be enabled. |
features.alpha.apollo.storage.postgres.cnpg.pooler.instances | int | 2 | The number of replicas of the pooler to run. |
features.alpha.apollo.storage.postgres.cnpg.pooler.parameters | object | {"default_pool_size":"1" ,"max_client_conn":"1000" ,"max_db_connections":"0" ,"max_prepared_statements":"1000"} | The pooler configuration, see PGbouncer documentation for all available options. Tune the suggested parameters as needed. |
features.alpha.apollo.storage.postgres.cnpg.pooler.podTemplate | object | {} | The pod template for the pooler, allows configuring almost all aspects of the pooler pods. |
features.alpha.apollo.storage.postgres.connection | object | "" | Configuration for the Apollo database connection, only respected if create is set to false. |
features.alpha.apollo.storage.postgres.connection.apollo.credentials | object | {"format":"","secret":{"name":""},"user":""} | The credentials for the connection from apollo server. Defaults to the one set in connection.credentials, if not set. |
features.alpha.apollo.storage.postgres.connection.apollo.credentials.format | string | "" | The format of the credentials for the connection from apollo server. Defaults to the one set in connection.credentials.format, if not set. |
features.alpha.apollo.storage.postgres.connection.apollo.credentials.secret.name | string | "" | Name of the secret containing the specified user’s credentials. Defaults to the one set in connection.credentials.secret.name, if not set. |
features.alpha.apollo.storage.postgres.connection.apollo.credentials.user | string | "" | The user to connect from apollo server as. Defaults to the one set in connection.credentials.user, if not set. |
features.alpha.apollo.storage.postgres.connection.apollo.sslmode | string | "" | sslmode for the connection from apollo server. Defaults to the one set in connection.sslmode, if not set. |
features.alpha.apollo.storage.postgres.connection.apollo.url | string | "" | The url for the connection from apollo server. Defaults to the one set in connection.url, if not set. |
features.alpha.apollo.storage.postgres.connection.ca.name | string | "" | Name of the secret containing the CA certificate to verify the connection with, if needed. |
features.alpha.apollo.storage.postgres.connection.credentials.format | string | "pgpass" | The format of the credentials, either pgpass or basicauth. |
features.alpha.apollo.storage.postgres.connection.credentials.secret.name | string | "" | Name of the secret containing the specified user’s credentials. |
features.alpha.apollo.storage.postgres.connection.credentials.user | string | "" | The user to connect to the database as. |
features.alpha.apollo.storage.postgres.connection.sslmode | string | "require" | sslmode for the connection to the database. |
features.alpha.apollo.storage.postgres.connection.syncer.credentials.format | string | "" | Format of the credentials for the connection from apollo syncers. Defaults to the one set in connection.credentials.format, if not set. |
features.alpha.apollo.storage.postgres.connection.syncer.credentials.secret.name | string | "" | The name of the secret containing the specified user’s credentials. If not set, a per syncer password will be generated and stored in a secret. |
features.alpha.apollo.storage.postgres.connection.syncer.credentials.user | string | "" | The user to connect from apollo syncers. If not set, a per syncer user will be created and granted the necessary permissions. |
features.alpha.apollo.storage.postgres.connection.syncer.sslmode | string | "" | sslmode for the connection from apollo syncer. Defaults to the one set in connection.sslmode, if not set. |
features.alpha.apollo.storage.postgres.connection.syncer.url | string | "" | sslmode for the connection from apollo syncer. Defaults to the one set in connection.url, if not set. |
features.alpha.apollo.storage.postgres.connection.url | string | "" | The url for the connection to the database. Just the hostname is required, the rest of the connection string will be built from the other fields. |
features.alpha.apollo.storage.postgres.create | bool | true | Whether the chart should install and handle the PostgreSQL database for Apollo using CloudNativePG, if set to true all connection configuration will be ignored. |
features.alpha.apollo.syncer.debug | bool | false | Whether apollo syncers should be deployed in debug mode. |
features.alpha.apollo.syncer.image.pullPolicy | string | "IfNotPresent" | Image pull policy for the apollo syncer image. |
features.alpha.apollo.syncer.image.repository | string | "hyperspace" | Repository for the apollo syncer image. |
features.alpha.apollo.syncer.image.tag | string | "" | Tag for the apollo syncer image. |
features.alpha.apollo.syncer.metrics.enabled | bool | true | Whether apollo syncers should expose metrics. |
features.alpha.apollo.syncer.resources.limits.cpu | string | "1000m" | CPU limit for the apollo syncer deployment. |
features.alpha.apollo.syncer.resources.limits.memory | string | "1024Mi" | Memory limit for the apollo syncer deployment. |
features.alpha.apollo.syncer.resources.requests.cpu | string | "100m" | CPU request for the apollo syncer deployment. |
features.alpha.apollo.syncer.resources.requests.memory | string | "150Mi" | Memory request for the apollo syncer deployment. |
features.alpha.argocdPlugin.enabled | bool | false | Whether to enable the argocd plugin feature. |
features.alpha.argocdPlugin.target.externalCluster | object | "" | The secret name and key for the kubeconfig of the external cluster. This is used by the argocd plugin to connect to the external cluster in case ArgoCD does not run in the same cluster as Spaces. If not specified, defaults to in-cluster credentials. |
features.alpha.argocdPlugin.target.externalCluster.enabled | bool | false | Whether to use the provided kubeconfig secret for the argocd plugin, otherwise in-cluster credentials will be used. |
features.alpha.argocdPlugin.target.externalCluster.secret.key | string | "kubeconfig" | The key at which the kubeconfig is stored in the secret. Ignored if externalCluster.enabled is false. |
features.alpha.argocdPlugin.target.externalCluster.secret.name | string | "kubeconfig" | The name of the secret containing the kubeconfig for the external cluster. Ignored if externalCluster.enabled is false. |
features.alpha.argocdPlugin.target.secretNamespace | string | "argocd" | The namespace where the ArgoCD cluster secrets should be created in. |
features.alpha.argocdPlugin.useUIDFormatForCTPSecrets | bool | false | If enabled, old secrets with |
features.alpha.inControlPlaneOverride.enabled | bool | false | This enables the InControlPlaneOverride API to allow hierarchical configuration overrides in the control planes. |
features.alpha.observability.enabled | bool | false | This enables the observability feature within this space. Enabling observability requires OpenTelemetry Operator for Kubernetes to be installed in the cluster. See https://opentelemetry.io/docs/kubernetes/operator/ |
features.alpha.sharedBackup.enabled | bool | false | This enables the SharedBackup feature. |
features.alpha.sharedSecrets.enabled | bool | false | This enables the shared secrets feature. |
features.alpha.simulations.enabled | bool | false | This enables simulating changes to a control plane. |
features.alpha.spaceBackup | object | {"enabled":false} | Configurations for the space backup feature. |
features.alpha.spaceBackup.enabled | bool | false | This enables the space backup feature. |
features.alpha.upboundPolicy.enabled | bool | false | This enables the SharedUpboundPolicy API within this space. |
features.alpha.upboundRBAC.enabled | bool | false | This enables respecting Upbound Authorization management within the space. This will include new APIs for binding Objects to identities supplied by Upbound. |
features.beta | object | {} | Beta features are on by default, but may be disabled here. Beta features are considered to be well tested, and will not be removed completely without being marked deprecated for at least two releases. |
fullnameOverride | string | "" | The full name of the chart, including the repository name. |
gatewayAPI | object | "" | Configurations for external requests coming into the space. |
gatewayAPI.gateway | object | { … } | Configurations for the Gateway resource that will act as an application gateway for Spaces. |
gatewayAPI.gateway.className | string | "spaces" | Specifies the GatewayClass name for the Gateway being provisioned if gatewayAPI.gateway.provision is true . |
gatewayAPI.gateway.name | string | "spaces" | Specifies the name of the Gateway resource to be used as the parent of the spaces routes, and to be provisioned if gatewayAPI.gateway.provision is true . |
gatewayAPI.gateway.provision | bool | false | Specifies whether the helm chart should provision the Gateway resource for routing external traffic into the cluster. |
gatewayAPI.host | string | "proxy.upbound-127.0.0.1.nip.io" | Specifies the externally routable hostname used for routing requests to individual control planes. |
gatewayAPI.insecure | bool | false | Disable TLS at the endpoints |
gatewayAPI.namespaceLabels | object | {} | Labels that are defined on the namespace of the Envoy proxy pod. Default value is: kubernetes.io/metadata.name: envoy-gateway-system |
gatewayAPI.podLabels | object | {} | Labels that are defined on the Envoy proxy pod. Default value is: app.kubernetes.io/name: envoy app.kubernetes.io/component: proxy app.kubernetes.io/managed-by: envoy-gateway |
gatewayAPI.spacesRouterRoute | object | { … } | Configurations for the TLS or HTTP route that forwards external traffic into spaces-router. |
gatewayAPI.spacesRouterRoute.provision | bool | false | Specifies whether the Helm chart should provision the TLSRoute or HTTPRoute resource (depending on how spaces-router is configured) for routing traffic to spaces-router. |
imagePullSecrets | list | [{"name":"upbound-pull-secret"}] | NOTE: only an imagePullSecret of “upbound-pull-secret” is currently supported. |
ingress | object | "" | Configurations for external requests coming into the space. |
ingress.annotations | object | {} | Allows setting ingress annotations for the external facing Ingress that terminates at the spaces-router deployment. |
ingress.host | string | "proxy.upbound-127.0.0.1.nip.io" | Specifies the externally routable hostname used for routing requests to individual control planes. |
ingress.insecure | bool | false | Disable TLS at the endpoints |
ingress.namespaceLabels | object | {} | .Labels that are defined on the namespace of ingress-nginx pod. Default value is: kubernetes.io/metadata.name: ingress-nginx |
ingress.podLabels | object | {} | Labels that are defined on the ingress-nginx pod. Default value is: app.kubernetes.io/instance: ingress-nginx app.kubernetes.io/component: controller app.kubernetes.io/name: ingress-nginx |
ingress.provision | bool | true | Specifies whether the helm chart should create an Ingress resource for routing requests to the spaces-router. |
nameOverride | string | "" | The name of the chart. |
observability.collectors | object | "" | Observability configuration to collect metrics and traces ( and logs in the future) from the Control Plane. Use SharedTelemetryConfig API to configure the exporters for Control Planes and Control Plane Groups. Control Plane telemetry collection is disabled by default and gated by the “features.alpha.observability.enabled” parameter. |
observability.collectors.repository | string | "opentelemetry-collector-spaces" | Repository for the OpenTelemetry collector image. |
observability.collectors.resources.limits.cpu | string | "100m" | CPU limit for the OpenTelemetry collector pod. |
observability.collectors.resources.limits.memory | string | "1Gi" | Memory limit for the OpenTelemetry collector pod. |
observability.collectors.resources.requests.cpu | string | "10m" | CPU request for the OpenTelemetry collector pod. |
observability.collectors.resources.requests.memory | string | "100Mi" | Memory request for the OpenTelemetry collector pod. |
observability.collectors.tag | string | "" | Tag for the OpenTelemetry collector image. |
observability.spacesCollector | object | "" | Observability configuration to collect metric and logs from the Spaces machinery and send them to the specified exporters. |
observability.spacesCollector.config.exportPipeline | object | {"logs":[],"metrics":[]} | The space-level OpenTelemetry collector exporter configuration. otlphttp: endpoint: https://otlp.eu01.nr-data.net headers: api-key: |
observability.spacesCollector.config.exportPipeline.logs | list | [] | List of logs exporters names. |
observability.spacesCollector.config.exportPipeline.metrics | list | [] | List of metrics exporters names. |
observability.spacesCollector.config.exporters | object | {"debug":null} | To export observability data, configure the exporters here and update the exportPipeline to include the exporters you want to use per telemetry type. |
observability.spacesCollector.config.exporters.debug | string | nil | The debug exporter configuration. |
observability.spacesCollector.repository | string | "opentelemetry-collector-spaces" | Repository for the space-level OpenTelemetry collector image. |
observability.spacesCollector.resources.limits.cpu | string | "100m" | CPU limit for the space-level OpenTelemetry collector pod. |
observability.spacesCollector.resources.limits.memory | string | "1Gi" | Memory limit for the space-level OpenTelemetry collector pod. |
observability.spacesCollector.resources.requests.cpu | string | "10m" | CPU request for the space-level OpenTelemetry collector pod. |
observability.spacesCollector.resources.requests.memory | string | "100Mi" | Memory request for the space-level OpenTelemetry collector pod. |
observability.spacesCollector.tag | string | "" | Tag for the space-level OpenTelemetry collector image. |
registry | string | "xpkg.upbound.io/spaces-artifacts" | Specifies the registry where the containers used in the spaces deployment are served from. |
router | object | "" | Configurations for the space router deployment. |
router.controlPlane.command | list | [] | The command to run for the router’s envoy control plane. |
router.controlPlane.extraArgs | list | [] | Additional arguments to pass to the router’s envoy control plane. |
router.controlPlane.extraEnv | list | [] | Additional environment variables to pass to the router’s envoy control plane. |
router.controlPlane.extraVolumeMounts | list | [] | Additional volume mounts to pass to the router’s envoy control plane. |
router.controlPlane.image.pullPolicy | string | "IfNotPresent" | The pull policy for the router’s envoy control plane image. |
router.controlPlane.image.repository | string | "hyperspace" | The repository for the router’s envoy control plane image. |
router.controlPlane.image.tag | string | "" | The tag for the router’s envoy control plane image. |
router.controlPlane.resources.limits.cpu | string | "1000m" | CPU limit for the router’s envoy control plane. |
router.controlPlane.resources.limits.memory | string | "1000Mi" | Memory limit for the router’s envoy control plane. |
router.controlPlane.resources.requests.cpu | string | "100m" | CPU request for the router’s envoy control plane. |
router.controlPlane.resources.requests.memory | string | "100Mi" | Memory request for the router’s envoy control plane. |
router.controlPlane.service.auth.port | int | 9000 | The port for the router’s envoy control plane auth service. |
router.controlPlane.service.grpc.port | int | 8081 | The port for the router’s envoy control plane gRPC service. |
router.controlPlane.service.http.port | int | 9091 | The port for the router’s envoy control plane HTTP service. |
router.controlPlane.service.metrics.port | int | 8085 | The port for the router’s envoy control plane metrics service. |
router.controlPlane.service.privateHttp.port | int | 9092 | The port for the router’s envoy control plane private HTTP service. |
router.extraVolumes | list | [] | Extra volumes to be added to the router pods. |
router.hpa.enabled | bool | false | This enables the Horizontal Pod Autoscaler for the router deployment. |
router.hpa.maxReplicas | int | 5 | The maximum number of replicas for the Horizontal Pod Autoscaler. |
router.hpa.minReplicas | int | 1 | The minimum number of replicas for the Horizontal Pod Autoscaler. |
router.hpa.targetCPUUtilizationPercentage | int | 80 | The target CPU utilization percentage for the Horizontal Pod Autoscaler. |
router.hpa.targetMemoryUtilizationPercentage | int | 0 | The target memory utilization percentage for the Horizontal Pod Autoscaler. |
router.insecure | bool | false | Disable TLS at the endpoints |
router.podLabels | object | {} | Labels to be added to the router pods. |
router.prometheus.podMonitor.enabled | bool | false | This enables the PodMonitor for the router deployment. |
router.prometheus.podMonitor.interval | string | "30s" | The interval at which the PodMonitor scrapes metrics. |
router.proxy.affinity | object | {} | Affinity for the router’s envoy proxy. |
router.proxy.extraArgs | list | [] | Additional arguments to pass to the router’s envoy proxy. |
router.proxy.extraEnv | list | [] | Additional environment variables to pass to the router’s envoy proxy. |
router.proxy.extraVolumeMounts | list | [] | Additional volume mounts to pass to the router’s envoy proxy. |
router.proxy.image.pullPolicy | string | "IfNotPresent" | Image pull policy for the router’s envoy proxy image. |
router.proxy.image.repository | string | "envoy" | Repository for the router’s envoy proxy image. |
router.proxy.image.tag | string | "v1.26-latest" | Tag for the router’s envoy proxy image. |
router.proxy.nodeSelector | object | {} | Node selector for the router’s envoy proxy. |
router.proxy.resources.limits.cpu | string | "1000m" | CPU limit for the router’s envoy proxy. |
router.proxy.resources.limits.memory | string | "200Mi" | Memory limit for the router’s envoy proxy. |
router.proxy.resources.requests.cpu | string | "100m" | CPU request for the router’s envoy proxy. |
router.proxy.resources.requests.memory | string | "50Mi" | Memory request for the router’s envoy proxy. |
router.proxy.service.annotations | object | {} | Annotations for the router’s envoy proxy service. |
router.proxy.service.http.port | int | 8443 | The port for the router’s envoy proxy HTTP service. |
router.proxy.service.type | string | "ClusterIP" | Type for the router’s envoy proxy service. |
router.proxy.tolerations | list | [] | Toleration for the router’s envoy proxy. |
router.replicaCount | int | 1 | The number of replicas for the router deployment. |
router.secretRefs.adminValidating | string | "cert-admin-signing" | Name of the secret containing the admin signing certificate. |
router.secretRefs.gatewaySigning | string | "cert-token-signing-gateway" | Name of the secret containing the internal token signing certificat host: proxy.upbound-127.0.0.1.nip.ioe |
router.secretRefs.tlsSecretName | string | "spaces-router-tls" | Name of the secret containing the TLS Certificate for the router. |
router.secretRefs.upboundIAMCABundle | string | "" | Name of the secret containing the CA bundle for the configured UpboundIAM Issuer. This is helpful for testing when configuring against an Issuer using self-signed certificates. |
router.serviceAccount.annotations | object | {} | Annotations to be added to the service account used by the router deployment. |
router.serviceAccount.create | bool | true | Whether to create a service account for the router deployment. |
router.serviceAccount.name | string | "" | The name of the service account used by the router deployment. |
securityContext | object | {} | Security context for system components. |
space | object | {"labels":{}} | Configurations that are applied consistently across the space. |
space.labels | object | {} | Labels that are applied to all Deployments, Pods, Services, and StatefulSets managed by the Space. |
version | string | "" | Overall artifact version that affects xpkgs and related components. |