| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-07 | 6.3 kB | |
| v1.3.3 source code.tar.gz | 2026-05-07 | 5.2 MB | |
| v1.3.3 source code.zip | 2026-05-07 | 7.2 MB | |
| openapi.json | 2026-05-07 | 2.5 MB | |
| cozypkg-checksums.txt | 2026-05-07 | 564 Bytes | |
| cozypkg-windows-arm64.tar.gz | 2026-05-07 | 17.2 MB | |
| cozypkg-darwin-amd64.tar.gz | 2026-05-07 | 20.0 MB | |
| cozypkg-darwin-arm64.tar.gz | 2026-05-07 | 18.6 MB | |
| cozypkg-linux-amd64.tar.gz | 2026-05-07 | 19.0 MB | |
| cozypkg-linux-arm64.tar.gz | 2026-05-07 | 17.2 MB | |
| cozypkg-windows-amd64.tar.gz | 2026-05-07 | 19.1 MB | |
| initramfs-metal-amd64.xz | 2026-05-07 | 146.9 MB | |
| kernel-amd64 | 2026-05-07 | 21.6 MB | |
| nocloud-amd64.raw.xz | 2026-05-07 | 335.7 MB | |
| metal-amd64.raw.xz | 2026-05-07 | 335.7 MB | |
| metal-amd64.iso | 2026-05-07 | 521.5 MB | |
| cozystack-operator-hosted.yaml | 2026-05-07 | 2.5 kB | |
| cozystack-operator-generic.yaml | 2026-05-07 | 2.6 kB | |
| cozystack-operator-talos.yaml | 2026-05-07 | 2.5 kB | |
| cozystack-crds.yaml | 2026-05-07 | 19.1 kB | |
| Totals: 20 Items | 1.5 GB | 2 | |
v1.3.3 (2026-05-07)
A patch release shipping a new opt-in PostgreSQL backup-recovery option and three managed-application fixes for Kafka and MongoDB external access. All changes are backports of PRs already merged to main.
Features and Improvements
- feat(postgres): add
bootstrap.serverNameparameter for backup recovery: Adds an optionalbootstrap.serverNamefield to the postgres chart so CloudNativePG can recover from a backup whose Barmanserver_name(inbackup.info) differs from the Kubernetes cluster name. Previously, recovery failed withno target backup foundwhen the new cluster had a different name than the original — for example, restoringcloudbackups into a cluster namedgrafana. When set,serverNameis passed through toexternalClustersand used to locate backups in S3; when omitted, behavior is unchanged and recovery continues to fall back tooldName. The same PR also clarifies theoldNameandserverNamefield descriptions invalues.yaml, the Go API types, the JSON schema, and the embedded CRD (@IvanHunters in [#2362], backport [#2588]).
Fixes
-
fix(kafka): create LoadBalancer service when external flag is enabled: When
external: truewas set on the Kafka chart, two issues prevented the Strimzi-managed<release>-kafka-external-bootstrapLoadBalancer from being usable. First, theexternallistener was always present in the Kafka CR (rendered astype: internalwhen disabled) instead of being omitted entirely. Second, the dashboard role only granted access to the internal<release>-kafka-bootstrapClusterIP, so the external bootstrap service was invisible to tenant users even when Strimzi had created it. The external listener is now added only whenexternal: true, and the dashboard RBAC includes the external bootstrap service in that mode. Helm-unittest coverage was added for bothexternal: trueandexternal: false(@IvanHunters in [#2578], backport [#2592]). -
fix(kafka): bump default
resourcesPresettomedium: Changes the defaultresourcesPresetfor bothkafkaandzookeeperfromsmall(1 CPU / 512Mi) tomedium(1 CPU / 1Gi). Strimzi sets the JVM heap to 50% of the container limit for Kafka and 75% for ZooKeeper, leaving only ~256Mi / 128Mi of non-heap budget under thesmallpreset. That budget is no longer sufficient on the current Strimzi 0.45 / Kafka 3.9 image baseline (Metaspace, code cache, direct buffers, JMX javaagent, embedded Jetty admin server, KRaft migration endpoints, thread stacks), so brokers and ZooKeeper pods on a fresh deployment hit cgroup OOM kills (exit 137) before the broker could connect to ZooKeeper, ending up inCrashLoopBackOffwithlastState.terminated.reason: OOMKilled. Themediumpreset is the smallest preset that gives both Kafka (heap 512Mi + ~500Mi non-heap) and ZooKeeper (heap 768Mi + 256Mi non-heap) enough headroom to start cleanly. Existing deployments that explicitly setresourcesPresetare unaffected; thesmallpreset is intentionally kept in the enum to preserve compatibility for deployments that pin it (@IvanHunters in [#2537], backport [#2589]). -
fix(mongodb): expose replica-set members per pod for external access: When
external: truewas set on a non-shardedMongoDB, Cozystack rendered a singleLoadBalancerService whose selector matched all replica-set members (app.kubernetes.io/replset: rs0). Round-robin balancing sent ~⅔ of writes to secondaries and they were rejected withMongoServerError: not primary, and drivers couldn't recover automatically because connecting through the LB returned the in-cluster DNS names of all members fromisMaster, none of which resolve from outside the cluster. The hand-writtenexternal-svc.yaml(for replica-set mode) is now replaced with the Percona MongoDB operator's nativereplsets[].exposefeature: the operator creates oneLoadBalancerService per pod (<release>-rs0-0,-1,-2) withstatefulset.kubernetes.io/pod-nameselectors, watchesService.status.loadBalancer.ingressfor each pod, and rewrites the memberhostinrs.confto the external IPs. External clients can now use a standard replica-set URI (mongodb://...:27017,...:27017,...:27017/?replicaSet=rs0) and the driver discovers the primary correctly from outside the cluster. Sharded mode is unchanged — the existing singleLoadBalanceris preserved because it front-ends statelessmongos, which routes writes to the right shard primary itself. Fixes [#2514] (@myasnikovdaniil in [#2522], backport [#2590]).
Documentation
- [website] Add vGPU setup guide for GPU sharing between VMs: Adds a practical guide for running VMs with NVIDIA vGPU on Cozystack alongside the existing GPU passthrough page, covering the SR-IOV vGPU path used by current data-centre GPUs (L4, L40, L40S, B100) on the vGPU 20.x driver branch. The guide walks through building the proprietary vGPU Manager container image, deploying the GPU Operator
vgpuvariant via the Package CR, assigning vGPU profiles to SR-IOV VFs throughcurrent_vgpu_type, configuring DLS licensing viaClientConfigToken, patching the KubeVirt CR withpermittedHostDevices.pciHostDevices, and a sampleVirtualMachineusing a CDIDataVolumeto avoid the 2.4 GiB containerDisk root overflow during in-VM driver install. Includes a vGPU profile reference table for L40S with the Q/A/B suffix taxonomy and an explicit note that Talos is not recommended for vGPU (passthrough on Talos is unaffected) (@lexfrei in cozystack/website#467).
Contributors
Thanks to everyone who contributed to this patch release:
Full Changelog: https://github.com/cozystack/cozystack/compare/v1.3.2...v1.3.3