statuses update

This commit is contained in:
sanek5g
2026-06-24 18:58:35 +03:00
parent fdddacf534
commit 0a9bfd0799
39 changed files with 2099 additions and 12 deletions

31
k8s/tagging.yaml Normal file
View File

@@ -0,0 +1,31 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: tagging
namespace: audio-pipeline
spec:
replicas: 1
selector:
matchLabels:
app: tagging
template:
metadata:
labels:
app: tagging
spec:
containers:
- name: tagging
image: audio-pipeline/tagging:latest
imagePullPolicy: IfNotPresent
envFrom:
- configMapRef:
name: app-config
- secretRef:
name: app-secrets
volumeMounts:
- name: storage
mountPath: /data/storage
volumes:
- name: storage
persistentVolumeClaim:
claimName: audio-storage