First service version review pass: reviewed 11 services total. - Pin mosquitto from floating :2 tag to 2.1.2 - Bump tailscale k8s-operator and proxy images from v1.94.1 to v1.94.2 - Record 7 up-to-date services in service-versions.yaml (prometheus, loki, kube-state-metrics, frigate, alloy-k8s, mosquitto, tailscale-operator) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: mosquitto
|
|
namespace: mqtt
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: mosquitto
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mosquitto
|
|
spec:
|
|
containers:
|
|
- name: mosquitto
|
|
image: eclipse-mosquitto:2.1.2
|
|
ports:
|
|
- containerPort: 1883
|
|
name: mqtt
|
|
volumeMounts:
|
|
- name: config
|
|
mountPath: /mosquitto/config/mosquitto.conf
|
|
subPath: mosquitto.conf
|
|
resources:
|
|
requests:
|
|
memory: "32Mi"
|
|
cpu: "50m"
|
|
limits:
|
|
memory: "128Mi"
|
|
cpu: "100m"
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 1883
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 30
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 1883
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 10
|
|
volumes:
|
|
- name: config
|
|
configMap:
|
|
name: mosquitto-config
|