All checks were successful
Deploy Fly.io Proxy / deploy (push) Successful in 1m5s
## Summary - Update CV release URL from v1.0.2 to v1.0.3 - Add `X-Clacks-Overhead: GNU Terry Pratchett` header to both `docs.eblu.me` and `cv.eblu.me` server blocks in the Fly.io proxy nginx config ## Deployment and Testing - [ ] Sync CV app: `argocd app sync cv` - [ ] Verify CV is serving v1.0.3 content - [ ] Deploy fly proxy (workflow or `mise run fly-deploy`) - [ ] Verify header: `curl -sI https://docs.eblu.me | grep -i clacks` - [ ] Verify header: `curl -sI https://cv.eblu.me | grep -i clacks` Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/176
43 lines
1,004 B
YAML
43 lines
1,004 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cv
|
|
namespace: cv
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: cv
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cv
|
|
spec:
|
|
containers:
|
|
- name: cv
|
|
image: registry.ops.eblu.me/blumeops/cv:v1.0.0
|
|
ports:
|
|
- containerPort: 80
|
|
name: http
|
|
env:
|
|
- name: CV_RELEASE_URL
|
|
value: "https://forge.ops.eblu.me/api/packages/eblume/generic/cv/v1.0.3/cv-v1.0.3.tar.gz"
|
|
resources:
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "10m"
|
|
limits:
|
|
memory: "128Mi"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 80
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 30
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 80
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 10
|