diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-31 17:10:50 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-31 17:10:50 +0200 |
| commit | 77f44553bcc0857c20e0a650a0a7d134da199729 (patch) | |
| tree | ca26570213c7ee969b5eb1f0afd733e2a93e2fda /f3s/minvid/helm-chart | |
| parent | 32a57d822cfe4315f5ad16186caa25337d6ef7b0 (diff) | |
Update MinVid deployment with corrected image and port configuration
Amp-Thread-ID: https://ampcode.com/threads/T-019c1492-bec0-70f8-8d02-ef3596a7228b
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'f3s/minvid/helm-chart')
| -rw-r--r-- | f3s/minvid/helm-chart/templates/deployment.yaml | 11 | ||||
| -rw-r--r-- | f3s/minvid/helm-chart/templates/ingress.yaml | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/f3s/minvid/helm-chart/templates/deployment.yaml b/f3s/minvid/helm-chart/templates/deployment.yaml index 9cbdf29..8047e76 100644 --- a/f3s/minvid/helm-chart/templates/deployment.yaml +++ b/f3s/minvid/helm-chart/templates/deployment.yaml @@ -15,12 +15,13 @@ spec: spec: containers: - name: minvid - image: ghcr.io/mariodian/minvid + image: ghcr.io/ludvigaman/minvid:latest + imagePullPolicy: IfNotPresent ports: - - containerPort: 3000 + - containerPort: 80 volumeMounts: - name: minvid-data - mountPath: /data + mountPath: /app/data volumes: - name: minvid-data persistentVolumeClaim: @@ -36,8 +37,8 @@ metadata: spec: ports: - name: web - port: 3000 + port: 80 protocol: TCP - targetPort: 3000 + targetPort: 8000 selector: app: minvid diff --git a/f3s/minvid/helm-chart/templates/ingress.yaml b/f3s/minvid/helm-chart/templates/ingress.yaml index 024d515..74d0f5f 100644 --- a/f3s/minvid/helm-chart/templates/ingress.yaml +++ b/f3s/minvid/helm-chart/templates/ingress.yaml @@ -17,4 +17,4 @@ spec: service: name: minvid-service port: - number: 3000 + number: 80 |
