* Feat: update Kubernetes manifests for Krawl deployment and improve resource labels * Feat: update version to 1.0.0 in Helm chart and related files; add timezone to README * Feat: enhance configuration options for handling malicious IPs and update dashboard secret path * Fix: standardize boolean value handling in environment configuration
17 lines
345 B
YAML
17 lines
345 B
YAML
# Source: krawl-chart/templates/pvc.yaml
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: krawl-db
|
|
namespace: krawl-system
|
|
labels:
|
|
app.kubernetes.io/name: krawl
|
|
app.kubernetes.io/instance: krawl
|
|
app.kubernetes.io/version: "1.0.0"
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|