- Remove PersistentVolumeClaim definition from deployment.yaml
- Replace persistentVolumeClaim volume with emptyDir for temporary storage
- Database files will be stored in pod memory/disk (ephemeral)
- Pods can now schedule without waiting for storage provisioning
Note: Data is not persistent across pod restarts. For production, implement proper storage class or migrate to persistent storage solution.
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
512 B
YAML
23 lines
512 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: sqdc-dashboard
|
|
|
|
resources:
|
|
- namespace.yaml
|
|
- deployment.yaml
|
|
- service.yaml
|
|
- ingress.yaml
|
|
- configmap.yaml
|
|
# Note: PVC removed - using emptyDir for temporary storage
|
|
|
|
commonLabels:
|
|
app: sqdc-dashboard
|
|
managed-by: kustomize
|
|
|
|
# Image tag will be set via kustomize edit or --kustomize-replace during deployment
|
|
images:
|
|
- name: gitea.vidoks.fr/sortifal/pfee
|
|
newTag: latest
|
|
newName: gitea.vidoks.fr/sortifal/pfee
|