| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-11 | 9.4 kB | |
| v1.4.3 source code.tar.gz | 2026-06-11 | 5.7 MB | |
| v1.4.3 source code.zip | 2026-06-11 | 7.8 MB | |
| openapi.json | 2026-06-11 | 2.5 MB | |
| cozypkg-checksums.txt | 2026-06-11 | 564 Bytes | |
| cozypkg-windows-arm64.tar.gz | 2026-06-11 | 22.9 MB | |
| cozypkg-darwin-amd64.tar.gz | 2026-06-11 | 26.7 MB | |
| cozypkg-darwin-arm64.tar.gz | 2026-06-11 | 24.7 MB | |
| cozypkg-linux-amd64.tar.gz | 2026-06-11 | 25.4 MB | |
| cozypkg-linux-arm64.tar.gz | 2026-06-11 | 22.9 MB | |
| cozypkg-windows-amd64.tar.gz | 2026-06-11 | 25.6 MB | |
| initramfs-metal-amd64.xz | 2026-06-11 | 154.4 MB | |
| kernel-amd64 | 2026-06-11 | 20.4 MB | |
| nocloud-amd64.raw.xz | 2026-06-11 | 347.5 MB | |
| metal-amd64.raw.xz | 2026-06-11 | 347.5 MB | |
| metal-amd64.iso | 2026-06-11 | 540.4 MB | |
| cozystack-operator-hosted.yaml | 2026-06-11 | 2.5 kB | |
| cozystack-operator-generic.yaml | 2026-06-11 | 2.6 kB | |
| cozystack-operator-talos.yaml | 2026-06-11 | 2.6 kB | |
| cozystack-crds.yaml | 2026-06-11 | 20.0 kB | |
| Totals: 20 Items | 1.6 GB | 0 | |
v1.4.3 (2026-06-10)
A patch release shipping five bug fixes for the dashboard, API server, networking, object storage, and managed Kubernetes, along with a seaweedfs-cosi-driver update, an ouroboros v0.8.0 upgrade, two ansible-cozystack improvements, and a batch of new documentation.
Features and Improvements
-
feat(ouroboros): bump to v0.8.0: Upgrades the ouroboros proxy to v0.8.0, which now logs an explicit reason when its TCP backend readiness check fails — making stuck-proxy situations immediately diagnosable instead of silently
NotReady. The upgrade also migrates the kubectl sidecar image from Docker Hub tomirror.gcr.io, avoiding anonymous pull rate-limits on shared CI/runner IPs (@lexfrei in [#2807], backport [#2835]). -
[ansible-cozystack] feat(prepare): exclude loop and virtual devices from host LVM scanning: Sets an LVM
global_filterin/etc/lvm/lvm.confon all prepare playbooks (Ubuntu, RHEL, SUSE) so the host LVM does not scan or activate DRBD, device-mapper, zd-device, or loop-backed volume groups — preventing unintended VG activation of LINSTOR/DRBD volumes or loop-mounted images. The filter is exposed as thecozystack_lvm_global_filterinventory variable for clusters whose own PVs live on device-mapper (LVM-on-LUKS, multipath), and its effectiveness is verified vialvmconfigimmediately after writing (@kvaps in cozystack/ansible-cozystack#49). -
[ansible-cozystack] fix(prepare): enable containerd device_ownership_from_security_context for CDI block imports: Adds a k3s containerd drop-in config enabling
device_ownership_from_security_contexton the CRI plugin across all prepare playbooks. Without this setting k3s ships the option disabled, so the KubeVirt CDI importer fails with "cannot open /dev/cdi-block-volume: Permission denied" when writing VM disk images into raw block volumes, causingDataVolumeto hang inImportInProgressand VMs to stayPending(@lexfrei in cozystack/ansible-cozystack#48).
Fixes
-
fix(dashboard): grant tenant dashboard read on cozy-public PVCs: The VM disk source-image dropdown in the console was returning 403 and staying empty even when golden images existed in the
cozy-publicnamespace. Thecozy:tenant:dashboardRole only granted read on Flux HelmRepositories and HelmCharts;get/list/watchon PersistentVolumeClaims has been added so tenant identities can list thevm-default-images-*PVCs (@myasnikovdaniil in [#2843], backport [#2858]). -
fix(api): emit initial-events-end bookmark for core.cozystack.io watches: The
TenantSecret,TenantModule, andTenantNamespaceaggregated API resources never sent thek8s.io/initial-events-endbookmark required by the WatchList / streaming-list protocol. Client-go informers usingWatchListClient(on by default since v1.35) never reachedHasSyncedand logged "hasn't received required bookmark event marking the end of initial events stream" every ~10 seconds. The bookmark is now emitted after initialADDEDevents, matching the behaviourapps.cozystack.io/Applicationalready implemented (@sunib in [#2786], backport [#2844]). -
fix(networking): point host ouroboros proxy at the root-tenant ingress: When
publishing.proxyProtocolwas enabled, the host-level ouroboros proxy inherited the wrapper chart's default backend (ingress-nginx-controller.cozy-ingress-nginx), a FQDN that describes a managed Kubernetes tenant cluster. On the host, ingress-nginx is deployed byextra/ingressasroot-ingress-controllerintenant-root, so the composed FQDN never resolved and the proxy never becameReady. The host ouroborosPackageis now emitted with aproxy.targetoverride derived frompublishing.ingressName(@lexfrei in [#2800], backport [#2846]). -
fix(objectstorage-controller): propagate Bucket readiness to BucketClaim: The vendored COSI controller (v0.2.2) hardcoded
bucketReady=falseafter dynamic provisioning and never re-read theBucketto pick up thetruetransition, soBucketAccesswas never granted and provisioned buckets ended up without credentials. The controller now re-reads the liveBucketafter create and propagates its readiness, convergingBucketClaimto ready on the next resync (@lexfrei in [#2792], backport [#2828]). -
fix(kubernetes): stamp application lineage labels on worker node VMs: Worker-node VMs of a tenant Kubernetes cluster are created by Cluster API and the KubeVirt provider, so their
virt-launcherpods were never stamped with theapps.cozystack.io/application.{group,kind,name}lineage labels, preventing the dashboard from attributing those pods to their owning Kubernetes application. The labels are now applied to theKubevirtMachineTemplateworker VM template. A companion fix also quotesapplication.nameso a purely-numeric cluster name renders as a YAML string rather than an integer, which would fail label-value validation (@kvaps in [#2779], backport [#2790]).
Dependencies
- chore(seaweedfs): bump seaweedfs-cosi-driver to v0.3.1: v0.3.1 ships a stale-socket self-heal: the COSI driver now removes any leftover UNIX socket before binding, so the objectstorage provisioner recovers automatically from
CrashLoopBackOffafter a non-graceful exit (SIGKILL, OOM, or panic) instead of wedging on "bind: address already in use" (@lexfrei in [#2791], backport [#2827]).
Development, Testing, and CI/CD
- ci(release): repair orphaned draft tag_name on retag: When the git tag was deleted and re-created between draft creation and merge, GitHub orphaned the draft release by setting
tag_nameto"untagged-<hash>"while preserving the human-readablename. The finalize step looked up the draft bytag_nameand threw "Draft release for \<tag> not found", blocking the release. The workflow now detects the orphaned form, falls back to matching byname, repairstag_nameviaupdateRelease, and then publishes (@myasnikovdaniil in [#2761], backport [#2829]).
Documentation
-
docs(ingress): explain how ingress works in the platform: Adds a "How ingress works" overview section to the ingress package README (rendered at
/docs/v1.4/operations/services/ingress/), covering per-tenant ingress-nginx controllers, the per-namespaceIngressClassmodel, cross-tenant sharing vianamespace.cozystack.io/ingress, TLS via cert-manager issuers, and thewhitelist/cloudflareProxyaccess-control options (@myasnikovdaniil in [#2770]). -
[website] docs(networking): publish Kubernetes API endpoint via external-dns with kuberture: Documents how to expose the managed Kubernetes API endpoint through external-dns using the kuberture system package, including configuration examples (@lexfrei in cozystack/website#539).
-
[website] docs: exclude loop devices from LVM global_filter: Adds documentation explaining the LVM
global_filterrequirement for hosts running Cozystack on bare metal, preventing unintended activation of DRBD/loop-backed volume groups (@kvaps in cozystack/website#563). -
[website] feat(blog): add Managed Kubernetes how-to post: Publishes a practical how-to blog post covering how to deploy and use managed Kubernetes clusters within Cozystack (@tym83 in cozystack/website#565).
-
[website] feat(blog): add platform-managed backups introduction post: Publishes a blog post introducing Cozystack's platform-managed backup capabilities for stateful workloads (@tym83 in cozystack/website#566).
-
[website] docs(talm): document DRBD sysctl tuning, keepalive toggle, etcd quota: Adds documentation for talm covering DRBD sysctl performance tuning, the DRBD keepalive toggle, and the etcd quota configuration (@lexfrei in cozystack/website#567).
Contributors
Thanks to everyone who contributed to this patch release:
New Contributors
We're excited to welcome our first-time contributors:
- @sunib - First contribution!
Full Changelog: https://github.com/cozystack/cozystack/compare/v1.4.2...v1.4.3