Skip to content

Commit 2a87ff5

Browse files
committed
add ubuntu 26 stub
1 parent 4c83b09 commit 2a87ff5

24 files changed

Lines changed: 122 additions & 145 deletions

File tree

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Quick reference documentation for looking up specific technical details. Bookmar
233233
- `playbook.md` - Ansible playbook reference with all available playbooks, tags, and execution examples
234234
- `port.md` - Port allocation table showing all services and their default ports
235235
- `fhs.md` - Filesystem hierarchy standard explaining directory structure and file locations
236-
- `extension.md` - Complete catalog of 504 PostgreSQL extensions with installation instructions
236+
- `extension.md` - Complete catalog of 510 PostgreSQL extensions with installation instructions
237237

238238
---
239239

@@ -339,7 +339,7 @@ Monitoring system configuration and dashboard usage.
339339
Complete PGSQL module parameter reference. All configuration options with descriptions and defaults.
340340

341341
#### Ext `/docs/pgsql/ext/`
342-
PostgreSQL extension management. Pigsty supports 504 extensions out of the box.
342+
PostgreSQL extension management. Pigsty supports 510 extensions out of the box.
343343

344344
- `start.md` - Quick start guide for extension installation
345345
- `intro.md` - Introduction to PostgreSQL extension ecosystem
@@ -473,7 +473,7 @@ Docker runtime module for deploying containerized applications alongside Pigsty
473473
---
474474

475475
### PIG `/docs/pig/`
476-
PIG package manager for PostgreSQL extensions. Command-line tool for discovering, installing, and managing the 504 extensions available in the Pigsty ecosystem.
476+
PIG package manager for PostgreSQL extensions. Command-line tool for discovering, installing, and managing the 510 extensions available in the Pigsty ecosystem.
477477

478478
---
479479

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Your feedback and ideas help make PostgreSQL more accessible and powerful for ev
2323

2424
### Suggest Extensions
2525

26-
Pigsty supports 504 PostgreSQL extensions. If you need an extension that's not included:
26+
Pigsty supports 510 PostgreSQL extensions. If you need an extension that's not included:
2727

2828
- Open an issue describing the extension and your use case
2929
- Include links to the extension's repository/documentation

Makefile

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ D12_PKG=pigsty-pkg-$(VERSION).d12.${ARCH}.tgz
3333
D13_PKG=pigsty-pkg-$(VERSION).d13.${ARCH}.tgz
3434
U22_PKG=pigsty-pkg-$(VERSION).u22.${ARCH}.tgz
3535
U24_PKG=pigsty-pkg-$(VERSION).u24.${ARCH}.tgz
36+
U26_PKG=pigsty-pkg-$(VERSION).u26.${ARCH}.tgz
3637
META?=10.10.10.10
3738
OS?=el9
3839
PKG?=""
@@ -387,7 +388,7 @@ cc: release copy-src copy-pkg use-src use-pkg
387388
copy-src:
388389
scp "dist/${VERSION}/${SRC_PKG}" $(META):~/pigsty.tgz
389390

390-
# copy offline packages (set OS=el8/el9/el10/d12/d13/u22/u24)
391+
# copy offline packages (set OS=el8/el9/el10/d12/d13/u22/u24/u26)
391392
copy-pkg:
392393
scp dist/${VERSION}/$(PKG)pigsty-pkg-${VERSION}.${OS}.${ARCH}.tgz $(META):/tmp/pkg.tgz
393394
copy-el8:
@@ -404,6 +405,8 @@ copy-u22:
404405
scp dist/${VERSION}/$(PKG)${U22_PKG} $(META):/tmp/pkg.tgz
405406
copy-u24:
406407
scp dist/${VERSION}/$(PKG)${U24_PKG} $(META):/tmp/pkg.tgz
408+
copy-u26:
409+
scp dist/${VERSION}/$(PKG)${U26_PKG} $(META):/tmp/pkg.tgz
407410
copy-app:
408411
scp dist/${VERSION}/${APP_PKG} $(META):~/app.tgz
409412
ssh -t $(META) 'rm -rf ~/app; tar -xf app.tgz; rm -rf app.tgz'
@@ -430,9 +433,11 @@ copy-src-oss:
430433
scp "dist/${VERSION}/${SRC_PKG}" el9:~/pigsty.tgz
431434
scp "dist/${VERSION}/${SRC_PKG}" d12:~/pigsty.tgz
432435
scp "dist/${VERSION}/${SRC_PKG}" u24:~/pigsty.tgz
436+
scp "dist/${VERSION}/${SRC_PKG}" u26:~/pigsty.tgz
433437
ssh -t el9 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
434438
ssh -t d12 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
435439
ssh -t u24 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
440+
ssh -t u26 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
436441
copy-src-pro: copy-src-oss
437442
scp "dist/${VERSION}/${SRC_PKG}" el8:~/pigsty.tgz
438443
scp "dist/${VERSION}/${SRC_PKG}" u22:~/pigsty.tgz
@@ -451,12 +456,15 @@ copy-src-deb:
451456
scp "dist/${VERSION}/${SRC_PKG}" d12:~/pigsty.tgz
452457
scp "dist/${VERSION}/${SRC_PKG}" u22:~/pigsty.tgz
453458
scp "dist/${VERSION}/${SRC_PKG}" u24:~/pigsty.tgz
459+
scp "dist/${VERSION}/${SRC_PKG}" u26:~/pigsty.tgz
454460
ssh -t d12 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
455461
ssh -t u22 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
456462
ssh -t u24 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
463+
ssh -t u26 'rm -rf ~/pigsty; tar -xf pigsty.tgz; rm -rf pigsty.tgz'
457464
ssh -t d12 'cd ~/pigsty && ./configure -i 10.10.10.12'
458465
ssh -t u22 'cd ~/pigsty && ./configure -i 10.10.10.22'
459466
ssh -t u24 'cd ~/pigsty && ./configure -i 10.10.10.24'
467+
ssh -t u26 'cd ~/pigsty && ./configure -i 10.10.10.26'
460468

461469

462470
#------------------------------#
@@ -579,6 +587,7 @@ meta12: cmeta del vmeta12 up ssh #copy-d12 use-pkg
579587
meta13: cmeta del vmeta13 up ssh #copy-d13 use-pkg
580588
meta22: cmeta del vmeta22 up ssh #copy-u22 use-pkg
581589
meta24: cmeta del vmeta24 up ssh #use-pkg
590+
meta26: cmeta del vmeta26 up ssh #copy-u26 use-pkg
582591

583592
vm: vmeta
584593
vmeta:
@@ -597,6 +606,8 @@ vmeta22:
597606
vagrant/config meta u22
598607
vmeta24:
599608
vagrant/config meta u24
609+
vmeta26:
610+
vagrant/config meta u26
600611

601612
#------------------------------#
602613
# full, four nodes, the sandbox
@@ -611,6 +622,7 @@ full12: cfull del vfull12 up ssh #copy-d12 use-pkg
611622
full13: cfull del vfull13 up ssh #copy-d13 use-pkg
612623
full22: cfull del vfull22 up ssh #copy-u22 use-pkg
613624
full24: cfull del vfull24 up ssh #copy-u24 use-pkg
625+
full26: cfull del vfull26 up ssh #copy-u26 use-pkg
614626

615627
vf: vfull
616628
vfull:
@@ -629,6 +641,8 @@ vfull22:
629641
vagrant/config full u22
630642
vfull24:
631643
vagrant/config full u24
644+
vfull26:
645+
vagrant/config full u26
632646

633647
#------------------------------#
634648
# simu, 20 nodes, the simubox
@@ -652,6 +666,8 @@ vsimu22:
652666
vagrant/config simu u22
653667
vsimu24:
654668
vagrant/config simu u24
669+
vsimu26:
670+
vagrant/config simu u26
655671

656672
vs: simu
657673
simu: simu9
@@ -669,6 +685,8 @@ simu22: csimu del vsimu22 new ssh
669685
scp dist/${VERSION}/$(PKG)pigsty-pkg-${VERSION}.u22.${ARCH}.tgz 10.10.10.10:/tmp/pkg.tgz ; ssh 10.10.10.10 'sudo mkdir -p /www; sudo tar -xf /tmp/pkg.tgz -C /www'
670686
simu24: csimu del vsimu24 new ssh
671687
scp dist/${VERSION}/$(PKG)pigsty-pkg-${VERSION}.u24.${ARCH}.tgz 10.10.10.10:/tmp/pkg.tgz ; ssh 10.10.10.10 'sudo mkdir -p /www; sudo tar -xf /tmp/pkg.tgz -C /www'
688+
simu26: csimu del vsimu26 new ssh
689+
scp dist/${VERSION}/$(PKG)pigsty-pkg-${VERSION}.u26.${ARCH}.tgz 10.10.10.10:/tmp/pkg.tgz ; ssh 10.10.10.10 'sudo mkdir -p /www; sudo tar -xf /tmp/pkg.tgz -C /www'
672690
rs:
673691
rsync -avz --exclude=vagrant ./ ai:~/pigsty/
674692
###############################################################
@@ -692,20 +710,20 @@ rs:
692710
st status suspend resume \
693711
ri rc rw ro rh test-ri test-rc test-rw test-ro test-rw2 test-ro2 test-rh test-st test-rb1 test-rb2 test-rb3 \
694712
di dd dc du dashboard-init dashboard-dump dashboard-clean \
695-
copy cc copy-src copy-pkg copy-el8 copy-el9 copy-el10 copy-d12 copy-d13 copy-u22 copy-u24 copy-app copy-all \
713+
copy cc copy-src copy-pkg copy-el8 copy-el9 copy-el10 copy-d12 copy-d13 copy-u22 copy-u24 copy-u26 copy-app copy-all \
696714
use-src use-pkg use-all cmdb \
697715
cso copy-src-oss copy-src-pro csr copy-src-rpm csd copy-src-deb \
698716
push pull ss gsync gpull grestore gpush \
699717
r release u upload-src \
700718
tu td ts to \
701719
cmeta cdual ctrio cfull csimu coss cpro \
702720
oss pro all vo vp vr vd va boot-pkg \
703-
meta meta8 meta9 meta10 meta12 meta13 meta22 meta24 \
704-
vm vmeta vmeta8 vmeta9 vmeta10 vmeta12 vmeta13 vmeta22 vmeta24 \
705-
full full8 full9 full10 full12 full13 full22 full24 \
706-
vf vfull vfull8 vfull9 vfull10 vfull12 vfull13 vfull22 vfull24 \
707-
simu-conf vsimu vsimu8 vsimu9 vsimu10 vsimu12 vsimu13 vsimu22 vsimu24 \
708-
vs simu simu8 simu9 simu10 simu12 simu13 simu22 simu24 rs \
721+
meta meta8 meta9 meta10 meta12 meta13 meta22 meta24 meta26 \
722+
vm vmeta vmeta8 vmeta9 vmeta10 vmeta12 vmeta13 vmeta22 vmeta24 vmeta26 \
723+
full full8 full9 full10 full12 full13 full22 full24 full26 \
724+
vf vfull vfull8 vfull9 vfull10 vfull12 vfull13 vfull22 vfull24 vfull26 \
725+
simu-conf vsimu vsimu8 vsimu9 vsimu10 vsimu12 vsimu13 vsimu22 vsimu24 vsimu26 \
726+
vs simu simu8 simu9 simu10 simu12 simu13 simu22 simu24 simu26 rs \
709727
rd release-dba gd get-dba ud upload-dba
710728

711729
###############################################################

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
[![Version: v4.3.0](https://img.shields.io/badge/version-v4.3.0-slategray?style=flat&logo=cilium&logoColor=white)](https://github.com/pgsty/pigsty/releases)
66
[![License: Apache-2.0](https://img.shields.io/github/license/pgsty/pigsty?logo=opensourceinitiative&logoColor=green&color=slategray)](https://pigsty.io/docs/about/license/)
77
[![GitHub Stars](https://img.shields.io/github/stars/pgsty/pigsty?style=flat&logo=github&logoColor=black&color=slategray)](https://star-history.com/#pgsty/pigsty&Date)
8-
[![Extensions: 504](https://img.shields.io/badge/extensions-504-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pigsty.io/ext/list)
8+
[![Extensions: 510](https://img.shields.io/badge/extensions-510-%233E668F?style=flat&logo=postgresql&logoColor=white&labelColor=3E668F)](https://pigsty.io/ext/list)
99
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/pgsty/pigsty)
1010

11-
Enterprise-Grade Open-Source **PostgreSQL** Distribution with HA, PITR, IaC, Monitor, and 504 PG extensions.
11+
Enterprise-Grade Open-Source **PostgreSQL** Distribution with HA, PITR, IaC, Monitor, and 510 PG extensions.
1212

1313
> "**P**ostgreSQL **I**n **G**reat **STY**le": **P**ostgres, **I**nfras, **G**raphics, **S**ervice, **T**oolbox, it's all **Y**ours.
1414
@@ -25,7 +25,7 @@ curl -fsSL https://repo.pigsty.io/get | bash -s v4.3.0
2525

2626
## Features
2727

28-
- **Extensible**: **504** [**PG Extensions**](https://pigsty.io/ext/list) & **12** [**PG Kernels**](https://pigsty.io/docs/pgsql/kernel) available, Packed for [**14 Linux Platforms**](https://pigsty.io/docs/ref/linux), Battery-Included.
28+
- **Extensible**: **510** [**PG Extensions**](https://pigsty.io/ext/list) & **12** [**PG Kernels**](https://pigsty.io/docs/pgsql/kernel) available, Packed for [**14 Linux Platforms**](https://pigsty.io/docs/ref/linux), Battery-Included.
2929
- **Reliable**: Self-healing [**HA**](https://pigsty.io/docs/concept/ha) clusters with pre-configured [**PITR**](https://pigsty.io/docs/pgsql/backup) and built-in [**ACL**](https://pigsty.io/docs/pgsql/config/acl), [**CA & SSL**](https://pigsty.io/docs/infra/admin/cert) secure best practice.
3030
- **Observable**: SOTA monitoring for [**PG**](https://demo.pigsty.io/ui/d/pgrds-instance/pgrds-instance) / [**Infra**](https://pigsty.io/docs/infra) / [**Node**](https://pigsty.io/docs/node) based on the **Victoria** & **Grafana** stack: [**Demo**](https://demo.pigsty.io) & [**Gallery**](https://github.com/pgsty/pigsty/wiki/Gallery).
3131
- **Scalable**: Auto-routed & pooled customizable database [**Services**](https://pigsty.io/docs/pgsql/service) [**Access**](https://pigsty.io/docs/pgsql/service#access-service) with **haproxy**, **pgbouncer**, and **VIP**.
@@ -54,7 +54,7 @@ You can even use many exotic [**PG Kernel Forks**](https://pigsty.io/docs/pgsql/
5454

5555
| Kernel | Key Feature | Description |
5656
|:------------------------------------------------------------:|:--------------------------------:|:--------------------------------------------------|
57-
| [PostgreSQL](https://pigsty.io/docs/pgsql/kernel/postgres) | **Battery-Included** | Original PGDG PostgreSQL with 504 extensions |
57+
| [PostgreSQL](https://pigsty.io/docs/pgsql/kernel/postgres) | **Battery-Included** | Original PGDG PostgreSQL with 510 extensions |
5858
| [Supabase](https://pigsty.io/docs/app/supabase) | **Backend as Service** | BaaS over PostgreSQL, Firebase alternative |
5959
| [Citus](https://pigsty.io/docs/pgsql/kernel/citus) | **Horizontal Scaling** | Distributive PostgreSQL via native extension |
6060
| [Babelfish](https://pigsty.io/docs/pgsql/kernel/babelfish) | **SQL Server Simulation** | Microsoft SQL Server wire-compatibility |
@@ -68,7 +68,7 @@ You can even use many exotic [**PG Kernel Forks**](https://pigsty.io/docs/pgsql/
6868
| [pgEdge](https://pigsty.io/docs/pgsql/kernel/pgedge) | **Multi-Master Distributive** | Geo-Distributive multi-writer Postgres |
6969
| [Cloudberry](https://pigsty.io/docs/pgsql/kernel/cloudberry) | **MPP Data Warehouse** | Greenplum 7 Apache OSS Fork |
7070

71-
And gather the synergistic superpowers of all [**504 PostgreSQL Extensions**](https://pigsty.io/ext/list) all together:
71+
And gather the synergistic superpowers of all [**510 PostgreSQL Extensions**](https://pigsty.io/ext/list) all together:
7272

7373
[![ecosystem](https://github.com/user-attachments/assets/c952441e-5ff7-4acb-aace-dd3021d28622)](https://pigsty.io/ext)
7474

@@ -80,7 +80,7 @@ And gather the synergistic superpowers of all [**504 PostgreSQL Extensions**](ht
8080
[![Linux](https://img.shields.io/badge/Linux-ARM64-%23FCC624?style=flat&logo=linux&labelColor=FCC624&logoColor=black)](https://pigsty.io/docs/node)
8181
[![EL Support: 8/9/10](https://img.shields.io/badge/EL-8/9/10-red?style=flat&logo=redhat&logoColor=red)](https://pigsty.io/docs/ref/linux#el)
8282
[![Debian Support: 12/13](https://img.shields.io/badge/Debian-12/13-%23A81D33?style=flat&logo=debian&logoColor=%23A81D33)](https://pigsty.io/docs/ref/linux#debian)
83-
[![Ubuntu Support: 22/24](https://img.shields.io/badge/Ubuntu-22/24-%23E95420?style=flat&logo=ubuntu&logoColor=%23E95420)](https://pigsty.io/docs/ref/linux#ubuntu)
83+
[![Ubuntu Support: 22/24/26](https://img.shields.io/badge/Ubuntu-22/24/26-%23E95420?style=flat&logo=ubuntu&logoColor=%23E95420)](https://pigsty.io/docs/ref/linux#ubuntu)
8484
[![Docker Image](https://img.shields.io/badge/Docker-v4.3.0-%232496ED?style=flat&logo=docker&logoColor=white)](https://pigsty.io/docs/setup/docker)
8585

8686
[**Prepare**](https://pigsty.io/docs/deploy/prepare) a fresh `x86_64` / `aarch64` node runs any [**compatible**](https://pigsty.io/docs/ref/linux) **Linux** OS Distros, then [**Install**](https://pigsty.io/docs/setup/install#install) **Pigsty** with:
@@ -534,7 +534,7 @@ pg-citus: # citus group
534534

535535

536536
You can deploy different kinds of PostgreSQL instance such as [`primary`](https://pigsty.io/docs/pgsql/config/cluster#primary), [`replica`](https://pigsty.io/docs/pgsql/config/cluster#replica), [`offline`](https://pigsty.io/docs/pgsql/config/cluster#offline), [`delayed`](https://pigsty.io/docs/pgsql/config/cluster#delayed), [`sync standby`](https://pigsty.io/docs/pgsql/config/cluster#sync-standby), etc.,
537-
and customize with scene-optimize [**config templates**](https://pigsty.io/docs/concept/iac/template) and all **504** [**extensions**](https://pigsty.io/ext/list) out-of-the-box.
537+
and customize with scene-optimize [**config templates**](https://pigsty.io/docs/concept/iac/template) and all **510** [**extensions**](https://pigsty.io/ext/list) out-of-the-box.
538538

539539
You can define [**Users**](https://pigsty.io/docs/pgsql/config/user), [**Databases**](https://pigsty.io/docs/pgsql/config/db), [**Service**](https://pigsty.io/docs/pgsql/service), [**HBAs**](https://pigsty.io/docs/pgsql/config/hba) and other entities with code and provision them in one pass.
540540

@@ -628,18 +628,19 @@ There are other pro, beta, or pilot modules, and there will be more coming in th
628628

629629
## Compatibility
630630

631-
We recommend using RockyLinux 10.1 / 9.7, Debian 13.4 / 12.13, and Ubuntu 24.04.4 / 22.04.5 for production use.
631+
We recommend using RockyLinux 10.1 / 9.7, Debian 13.4 / 12.13, and Ubuntu 26.04.0 / 24.04.4 / 22.04.5 for production use.
632632

633633
Pigsty runs directly on bare Linux, and focuses on actively maintained mainstream LTS [**Linux Distributions**](https://pigsty.io/docs/ref/linux):
634634

635-
| Code | Distro | Minor | `x86_64` | Status | `aarch64` | Status |
636-
|:--------:|------------------------|---------|:---------------------------------------------------:|:------:|:-----------------------------------------------------:|:------:|
637-
| **EL10** | RHEL / Rocky / Alma 10 | 10.1 | [`el10.x86_64`](roles/node_id/vars/el10.x86_64.yml) | 🌐📦 | [`el10.aarch64`](roles/node_id/vars/el10.aarch64.yml) | 🌐📦 |
638-
| **EL9** | RHEL / Rocky / Alma 9 | 9.7 | [`el9.x86_64`](roles/node_id/vars/el9.x86_64.yml) | 🌐📦 | [`el9.aarch64`](roles/node_id/vars/el9.aarch64.yml) | 🌐📦 |
639-
| **U24** | Ubuntu 24.04 (noble) | 24.04.4 | [`u24.x86_64`](roles/node_id/vars/u24.x86_64.yml) | 🌐📦 | [`u24.aarch64`](roles/node_id/vars/u24.aarch64.yml) | 🌐📦 |
640-
| **U22** | Ubuntu 22.04 (jammy) | 22.04.5 | [`u22.x86_64`](roles/node_id/vars/u22.x86_64.yml) | 🌐📦 | [`u22.aarch64`](roles/node_id/vars/u22.aarch64.yml) | 🌐📦 |
641-
| **D13** | Debian 13 (trixie) | 13.4 | [`d13.x86_64`](roles/node_id/vars/d13.x86_64.yml) | 🌐📦 | [`d13.aarch64`](roles/node_id/vars/d13.aarch64.yml) | 🌐📦 |
642-
| **D12** | Debian 12 (bookworm) | 12.13 | [`d12.x86_64`](roles/node_id/vars/d12.x86_64.yml) | 🌐📦 | [`d12.aarch64`](roles/node_id/vars/d12.aarch64.yml) | 🌐📦 |
635+
| Code | Distro | Minor | `x86_64` | Status | `aarch64` | Status |
636+
|:--------:|-------------------------|---------|:---------------------------------------------------:|:------:|:-----------------------------------------------------:|:------:|
637+
| **EL10** | RHEL / Rocky / Alma 10 | 10.1 | [`el10.x86_64`](roles/node_id/vars/el10.x86_64.yml) | 🌐📦 | [`el10.aarch64`](roles/node_id/vars/el10.aarch64.yml) | 🌐📦 |
638+
| **EL9** | RHEL / Rocky / Alma 9 | 9.7 | [`el9.x86_64`](roles/node_id/vars/el9.x86_64.yml) | 🌐📦 | [`el9.aarch64`](roles/node_id/vars/el9.aarch64.yml) | 🌐📦 |
639+
| **U26** | Ubuntu 26.04 (resolute) | 26.04.0 | [`u26.x86_64`](roles/node_id/vars/u26.x86_64.yml) | 🌐📦 | [`u26.aarch64`](roles/node_id/vars/u26.aarch64.yml) | 🌐📦 |
640+
| **U24** | Ubuntu 24.04 (noble) | 24.04.4 | [`u24.x86_64`](roles/node_id/vars/u24.x86_64.yml) | 🌐📦 | [`u24.aarch64`](roles/node_id/vars/u24.aarch64.yml) | 🌐📦 |
641+
| **U22** | Ubuntu 22.04 (jammy) | 22.04.5 | [`u22.x86_64`](roles/node_id/vars/u22.x86_64.yml) | 🌐📦 | [`u22.aarch64`](roles/node_id/vars/u22.aarch64.yml) | 🌐📦 |
642+
| **D13** | Debian 13 (trixie) | 13.4 | [`d13.x86_64`](roles/node_id/vars/d13.x86_64.yml) | 🌐📦 | [`d13.aarch64`](roles/node_id/vars/d13.aarch64.yml) | 🌐📦 |
643+
| **D12** | Debian 12 (bookworm) | 12.13 | [`d12.x86_64`](roles/node_id/vars/d12.x86_64.yml) | 🌐📦 | [`d12.aarch64`](roles/node_id/vars/d12.aarch64.yml) | 🌐📦 |
643644

644645

645646
## Sponsors

app/insforge/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It provides authentication, REST API (PostgREST), edge functions (Deno), real-ti
1010
Design your database schema and frontend, and skip backend development entirely.
1111

1212
Self-hosted InsForge with Pigsty enjoys full PostgreSQL monitoring, IaC, PITR, and high availability,
13-
with the latest PG 17/18 kernels and [504](https://pigsty.io/ext/list) PostgreSQL extensions ready to use.
13+
with the latest PG 17/18 kernels and [510](https://pigsty.io/ext/list) PostgreSQL extensions ready to use.
1414

1515

1616
-------

app/supabase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ But there is no doubt that when you really grow to millions of users, some may c
1414

1515
That's where Pigsty comes in. Pigsty provides a complete one-click self-hosting solution for Supabase.
1616
Self-hosted Supabase can enjoy full PostgreSQL monitoring, IaC, PITR, and high availability, the new PG 18 kernels (and 15~18),
17-
and [504](https://pigsty.io/ext/list) PostgreSQL extensions ready to use, and can take full advantage of the performance and cost advantages of modern hardware.
17+
and [510](https://pigsty.io/ext/list) PostgreSQL extensions ready to use, and can take full advantage of the performance and cost advantages of modern hardware.
1818

1919

2020

0 commit comments

Comments
 (0)