## Summary - Move devpi Dockerfile from argocd/manifests to containers/devpi/ - Add containers for: transmission, teslamate, miniflux, kiwix-serve, kubectl - Update all k8s deployments to use local images (registry.ops.eblu.me/blumeops/*) - All containers use v1.0.0 tag for initial release ## Containers Added | Container | Source | Notes | |-----------|--------|-------| | devpi | python:3.12-slim | Existing, moved to containers/ | | kubectl | alpine + download | For zim-watcher CronJob | | miniflux | Go build from source | v2.2.16 | | kiwix-serve | Download pre-built binary | v3.8.1 | | transmission | alpine + apk install | Simpler than linuxserver image | | teslamate | Elixir build from source | v2.2.0 | ## Deployment and Testing - [ ] Build and tag devpi-v1.0.0 - [ ] Build and tag kubectl-v1.0.0 - [ ] Build and tag miniflux-v1.0.0 - [ ] Build and tag kiwix-serve-v1.0.0 - [ ] Build and tag transmission-v1.0.0 - [ ] Build and tag teslamate-v1.0.0 - [ ] Sync ArgoCD apps and verify services 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/61
62 lines
1.6 KiB
YAML
62 lines
1.6 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: teslamate
|
|
namespace: teslamate
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: teslamate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: teslamate
|
|
spec:
|
|
containers:
|
|
- name: teslamate
|
|
image: registry.ops.eblu.me/blumeops/teslamate:v1.0.1
|
|
ports:
|
|
- containerPort: 4000
|
|
env:
|
|
- name: DATABASE_USER
|
|
value: "teslamate"
|
|
- name: DATABASE_PASS
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: teslamate-db
|
|
key: password
|
|
- name: DATABASE_NAME
|
|
value: "teslamate"
|
|
- name: DATABASE_HOST
|
|
value: "blumeops-pg-rw.databases.svc.cluster.local"
|
|
- name: ENCRYPTION_KEY
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: teslamate-encryption
|
|
key: key
|
|
- name: DISABLE_MQTT
|
|
value: "true"
|
|
- name: CHECK_ORIGIN
|
|
value: "false"
|
|
- name: TZ
|
|
value: "America/Los_Angeles"
|
|
resources:
|
|
requests:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
limits:
|
|
memory: "512Mi"
|
|
cpu: "500m"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 4000
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 30
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 4000
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 10
|