Skip to content

Commit 440f5b9

Browse files
Gkrumbach07Ambient Code Botclaude
authored
fix: increase minio PVC to 2Ti to match UAT (#1196)
## Summary - UAT cluster already has a 2TB `minio-data` PVC, but the base manifest specifies `500Gi` - Kubernetes rejects shrinking a PVC, causing `oc apply` to fail with: `spec.resources.requests.storage: Forbidden: field can not be less than previous value` - Adds a production overlay patch to set `minio-data` PVC to `2Ti` Fixes https://github.com/ambient-code/platform/actions/runs/23954839404/job/69871041808 ## Test plan - [ ] Verify `kustomize build components/manifests/overlays/production` renders `minio-data` PVC with `storage: 2Ti` - [ ] Deploy to UAT succeeds without PVC error 🤖 Generated with [Claude Code](https://claude.com/claude-code) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated production environment configuration to allocate 2Ti of storage for MinIO object storage service. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Ambient Code Bot <bot@ambient-code.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d9106f3 commit 440f5b9

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

components/manifests/overlays/production/kustomization.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ patches:
5151
kind: Service
5252
name: ambient-api-server
5353
version: v1
54+
- path: minio-pvc-patch.yaml
55+
target:
56+
kind: PersistentVolumeClaim
57+
name: minio-data
58+
version: v1
5459

5560
# Production images
5661
images:
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
apiVersion: v1
2+
kind: PersistentVolumeClaim
3+
metadata:
4+
name: minio-data
5+
spec:
6+
resources:
7+
requests:
8+
storage: 2Ti

0 commit comments

Comments
 (0)