256a6871e8
Introduces chart/ with deployment, service, and PVC templates driven by Helm values instead of Kustomize variable substitution. Removes the flux/ directory which is superseded by the chart. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
14 lines
325 B
YAML
14 lines
325 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: {{ include "antigravity.pvcName" . }}
|
|
labels:
|
|
{{- include "antigravity.labels" . | nindent 4 }}
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteMany
|
|
storageClassName: {{ .Values.storage.className }}
|
|
resources:
|
|
requests:
|
|
storage: {{ .Values.storage.size }}
|