@@ -31,7 +31,8 @@ Below is a summary table of configurable values from values.yaml.
3131| -------------------------------------------------------------| --------| ---------------------------------------------| ---------------------------------------------------------------------------|
3232| global.labels | object | {} | Common labels added to all resources. |
3333| global.podLabels | object | {} | Pod labels applied to all Deployments/Pods. |
34- | global.imageTag | string | "2025.06.3" | Default image tag used when per-service tag is empty. |
34+ | global.imageRegistry | string | "" | Global image registry override. |
35+ | global.imageTag | string | "2025.07.1" | Default image tag used when per-service tag is empty. |
3536| global.imagePullPolicy | string | IfNotPresent | Global image pull policy. |
3637| global.imagePullSecrets | list | [ ] | List of image pull secret names. |
3738| global.verboseLogging | bool | false | Enable verbose logging globally. |
@@ -55,6 +56,7 @@ Below is a summary table of configurable values from values.yaml.
5556| fileServer.logLevel | string | "INFO" | Log level for file server. |
5657| fileServer.image.repository | string | "nxprivatecloud/nx-cloud-file-server" | File server image repository. |
5758| fileServer.image.tag | string | "" | File server image tag (overrides global.imageTag when set). |
59+ | fileServer.image.digest | string | "" | File server image digest (overrides tag when set). |
5860| fileServer.image.pullPolicy | string | IfNotPresent | Image pull policy for file server. |
5961| fileServer.service.annotations | object | {} | Service annotations for file server. |
6062| fileServer.service.labels | object | {} | Service labels for file server. |
@@ -81,6 +83,7 @@ Below is a summary table of configurable values from values.yaml.
8183| fileServer.deployment.volumes | list | [ ] | Additional volumes. |
8284| fileServer.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
8385| fileServer.deployment.extraContainers | list | [ ] | Extra sidecars for file server only. |
86+ | fileServer.deployment.initContainers | list | [ ] | Init containers for file server. |
8487| fileServer.pvc.name | string | nx-cloud-file-server | PVC name for file server storage. |
8588| fileServer.pvc.annotations | object | {} | PVC annotations. |
8689| fileServer.pvc.labels | object | {} | PVC labels. |
@@ -96,6 +99,7 @@ Below is a summary table of configurable values from values.yaml.
9699| aggregator.logLevel | string | "INFO" | Log level for aggregator. |
97100| aggregator.image.repository | string | "nxprivatecloud/nx-cloud-aggregator" | Aggregator image repository. |
98101| aggregator.image.tag | string | "" | Aggregator image tag (overrides global.imageTag when set). |
102+ | aggregator.image.digest | string | "" | Aggregator image digest (overrides tag when set). |
99103| aggregator.image.pullPolicy | string | IfNotPresent | Image pull policy for aggregator. |
100104| aggregator.cronjob.schedule | string | "* /10 * * * * " | Cron schedule for the aggregator job. |
101105| aggregator.cronjob.annotations | object | {} | CronJob annotations. |
@@ -113,6 +117,7 @@ Below is a summary table of configurable values from values.yaml.
113117| aggregator.cronjob.resources.requests.cpu | string | '500m' | Requested CPU. |
114118| aggregator.cronjob.volumes | list | [ ] | Additional volumes for aggregator. |
115119| aggregator.cronjob.volumeMounts | list | [ ] | Additional volume mounts for aggregator. |
120+ | aggregator.cronjob.initContainers | list | [ ] | Init containers for aggregator. |
116121| aggregator.serviceAccount.create | bool | true | Whether to create a ServiceAccount for aggregator. |
117122| aggregator.serviceAccount.name | string | nx-cloud-aggregator | ServiceAccount name for aggregator. |
118123| aggregator.serviceAccount.annotations | object | {} | ServiceAccount annotations for aggregator. |
@@ -123,6 +128,7 @@ Below is a summary table of configurable values from values.yaml.
123128| frontend.logLevel | string | "INFO" | Log level for frontend. |
124129| frontend.image.repository | string | "nxprivatecloud/nx-cloud-frontend" | Frontend image repository. |
125130| frontend.image.tag | string | "" | Frontend image tag (overrides global.imageTag when set). |
131+ | frontend.image.digest | string | "" | Frontend image digest (overrides tag when set). |
126132| frontend.image.pullPolicy | string | "" | Image pull policy for frontend (defaults to global if empty). |
127133| frontend.service.annotations | object | {} | Service annotations for frontend. |
128134| frontend.service.labels | object | {} | Service labels for frontend. |
@@ -150,6 +156,7 @@ Below is a summary table of configurable values from values.yaml.
150156| frontend.deployment.volumes | list | [ ] | Additional volumes. |
151157| frontend.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
152158| frontend.deployment.extraContainers | list | [ ] | Extra sidecars for frontend only. |
159+ | frontend.deployment.initContainers | list | [ ] | Init containers for frontend. |
153160| frontend.serviceAccount.create | bool | true | Whether to create a ServiceAccount for frontend. |
154161| frontend.serviceAccount.name | string | nx-cloud-frontend | ServiceAccount name for frontend. |
155162| frontend.serviceAccount.annotations | object | {} | ServiceAccount annotations for frontend. |
@@ -169,6 +176,7 @@ Below is a summary table of configurable values from values.yaml.
169176| api.valkey.passwordSecret.key | string | "" | Secret key for Valkey password. |
170177| api.image.repository | string | "nxprivatecloud/nx-cloud-nx-api" | API image repository. |
171178| api.image.tag | string | "" | API image tag (overrides global.imageTag when set). |
179+ | api.image.digest | string | "" | API image digest (overrides tag when set). |
172180| api.image.pullPolicy | string | "" | Image pull policy for API (defaults to global if empty). |
173181| api.service.annotations | object | {} | Service annotations for API. |
174182| api.service.labels | object | {} | Service labels for API. |
@@ -196,6 +204,7 @@ Below is a summary table of configurable values from values.yaml.
196204| api.deployment.volumes | list | [ ] | Additional volumes. |
197205| api.deployment.volumeMounts | list | [ ] | Additional volume mounts. |
198206| api.deployment.extraContainers | list | [ ] | Extra sidecars for API only. |
207+ | api.deployment.initContainers | list | [ ] | Init containers for API. |
199208| api.serviceAccount.create | bool | true | Whether to create a ServiceAccount for API. |
200209| api.serviceAccount.name | string | nx-cloud-nx-api | ServiceAccount name for API. |
201210| api.serviceAccount.annotations | object | {} | ServiceAccount annotations for API. |
0 commit comments