@ossy/deployment-tools 3.0.8 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## 3.0.9 (2026-08-11)
7
+
8
+ **Note:** Version bump only for package @ossy/deployment-tools
9
+
10
+
11
+
12
+
13
+
6
14
  ## 3.0.8 (2026-08-07)
7
15
 
8
16
  **Note:** Version bump only for package @ossy/deployment-tools
package/README.md CHANGED
@@ -17,6 +17,17 @@ Internet → Caddy (:443)
17
17
 
18
18
  Caddy uses **on-demand TLS**: before issuing a certificate for any domain, it calls `GET http://localhost:3001/api/v0/apps/ask?domain=<domain>`. If the domain is registered (i.e. `ossy app publish` has been run for it), Caddy issues the cert and proxies to the platform runtime.
19
19
 
20
+ ## Health checks (ALB / ECS)
21
+
22
+ Every deployable Ossy HTTP image exposes an unauthenticated liveness probe at **`GET /health`** (also accepts `HEAD`). It returns `200` when the Node process can accept traffic.
23
+
24
+ | Image | How `/health` is provided |
25
+ |---|---|
26
+ | `ghcr.io/ossy-se/platform` (runtime) | Built into `@ossy/platform` `startRuntime` — does not load a CMS site |
27
+ | Website / app images (`website-ossy`, other `services[]`) | Built into `@ossy/platform` `startServer` (and/or a local `health.api.js` until the platform package is bumped) |
28
+
29
+ Use path `/health` for future ALB target-group and ECS container health checks. Do not point probes at `/`, `/status`, or authenticated routes.
30
+
20
31
  ## Services
21
32
 
22
33
  All services run as Docker containers managed by systemd. Service files are written to the EC2 host by CDK user data at instance creation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ossy/deployment-tools",
3
- "version": "3.0.8",
3
+ "version": "3.0.9",
4
4
  "description": "Collection of scripts and tools to aid deployment of containers and static files to Amazon Web Services through GitHub Actions",
5
5
  "source": "./src/index.js",
6
6
  "main": "./src/index.js",
@@ -22,5 +22,5 @@
22
22
  "devDependencies": {
23
23
  "jest": "^30.4.2"
24
24
  },
25
- "gitHead": "980b380c9dee0de78ef3ebabe86efcec1c223a9a"
25
+ "gitHead": "908fae28675f6c3c179d4c2eecb451e8a1af886e"
26
26
  }