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