REFACTOR(postgresql): restructure pgweb

- and pg-dev folder str...
- Remove argocd/, helm-values/ subdirectories
- Move files to parent directory with standardized names
- Add namespace.yaml to both apps with Goldilocks labels
- Preserve vault/ subdirectories (pgweb: 3 files, postgresql-dev: 1
  file)
- Update main kustomization.yaml to reference argocd.yaml files directly
- Update postgresql-dev helm valueFiles path
- Comment out argocd.yaml in each app's kustomization.yaml to prevent
  circular reference

Applications restructured:
- pgweb
- postgresql-dev
This commit is contained in:
2025-12-29 02:24:12 +09:00
parent 55380edbd4
commit d9df80bca3
7 changed files with 19 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
# PostgreSQL (Development) Helm Values
# Chart: https://github.com/bitnami/charts/tree/main/bitnami/postgresql
# Single instance for development
fullnameOverride: postgresql-dev
image:
tag: latest
architecture: standalone
auth:
existingSecret: postgresql-password-dev
secretKeys:
adminPasswordKey: postgres-password
userPasswordKey: password
username: bluemayne
database: postgres
persistence:
enabled: true
size: 10Gi
storageClass: local-path
resources:
requests:
memory: "256Mi"
cpu: "30m" # Reduced to 30% of original (100m -> 30m)
limits:
cpu: null
memory: null
metrics:
enabled: false