Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions wordpress/0 — AI Agent/import.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ services:
zeropsSetup: dev
buildFromGit: https://github.com/zerops-recipe-apps/wordpress-app
enableSubdomainAccess: true
# Dev workstation: pin a single container (dev uses SSHFS — multiple would
# conflict) and floor RAM at 1 GB to absorb the first-boot `wp core install`
# spike plus on-container composer/wp-cli over SSH (autoscaling reacts too slowly).
maxContainers: 1
verticalAutoscaling:
minRam: 1
envSecrets:
WORDPRESS_TITLE: WordPress on Zerops
WORDPRESS_ADMIN_USER: zadmin
Expand All @@ -58,6 +64,9 @@ services:
zeropsSetup: prod
buildFromGit: https://github.com/zerops-recipe-apps/wordpress-app
enableSubdomainAccess: true
# Floor RAM at 0.5 GB to cover the first-boot `wp core install` spike.
verticalAutoscaling:
minRam: 0.5
envSecrets:
WORDPRESS_TITLE: WordPress on Zerops
WORDPRESS_ADMIN_USER: zadmin
Expand Down
5 changes: 5 additions & 0 deletions wordpress/1 — Remote (CDE)/import.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ services:
zeropsSetup: dev
buildFromGit: https://github.com/zerops-recipe-apps/wordpress-app
enableSubdomainAccess: true
# Dev workstation: pin a single container (dev uses SSHFS) and floor RAM at 1 GB
# to absorb the first-boot `wp core install` spike plus on-container composer/wp-cli.
maxContainers: 1
verticalAutoscaling:
minRam: 1
envSecrets:
WORDPRESS_TITLE: WordPress on Zerops
WORDPRESS_ADMIN_USER: zadmin
Expand Down
3 changes: 3 additions & 0 deletions wordpress/3 — Stage/import.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ services:
zeropsSetup: prod
buildFromGit: https://github.com/zerops-recipe-apps/wordpress-app
enableSubdomainAccess: true
# Floor RAM at 0.5 GB to cover the first-boot `wp core install` spike.
verticalAutoscaling:
minRam: 0.5
envSecrets:
WORDPRESS_TITLE: WordPress on Zerops
WORDPRESS_ADMIN_USER: zadmin
Expand Down
3 changes: 3 additions & 0 deletions wordpress/5 — Highly-available Production/import.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ services:
maxContainers: 6
verticalAutoscaling:
cpuMode: DEDICATED
# Floor RAM at 0.5 GB per container to cover the first-boot `wp core install`
# spike (both min containers boot cold); steady-state scales up from here.
minRam: 0.5
envSecrets:
WORDPRESS_TITLE: WordPress on Zerops
WORDPRESS_ADMIN_USER: zadmin
Expand Down