Skip to content

Commit efe414d

Browse files
KrisSimonclaude
andcommitted
Rename to StatusPost, update k8s image and add Prometheus annotations
- Rename README title from "Web Chat" to "StatusPost" - Update kustomization image to ghcr.io/arolang/example-statuspost - Set imagePullPolicy to Always to track latest image - Add prometheus.io scrape annotations to pod template Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4ba5f15 commit efe414d

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Web Chat
1+
# StatusPost
22

3-
A real-time chat application built with ARO, demonstrating WebSocket support for live message updates.
3+
A real-time status posting application built with ARO, demonstrating WebSocket support for live message updates.
44

55
## Features
66

deployment/k8s/deployment.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ spec:
1717
app: statuspost
1818
app.kubernetes.io/name: statuspost
1919
app.kubernetes.io/component: server
20+
annotations:
21+
prometheus.io/scrape: "true"
22+
prometheus.io/path: "/metrics"
23+
prometheus.io/port: "8080"
2024
spec:
2125
containers:
2226
- name: statuspost
2327
image: statuspost:latest
24-
imagePullPolicy: IfNotPresent
28+
imagePullPolicy: Always
2529
ports:
2630
- name: http
2731
containerPort: 8080

deployment/k8s/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ commonLabels:
1515

1616
images:
1717
- name: statuspost
18-
newName: ghcr.io/arolang/statuspost
18+
newName: ghcr.io/arolang/example-statuspost
1919
newTag: latest

0 commit comments

Comments
 (0)