summaryrefslogtreecommitdiff
path: root/f3s/example-apache-volume-claim/apache-deployment.yaml
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-07 09:27:36 +0300
committerPaul Buetow <paul@buetow.org>2025-08-07 09:27:36 +0300
commit4849dd092768adc37f5cfd482f4f0b62d372c679 (patch)
tree815cbd34e6be69bd2afe74f8ca6d667621e05a8a /f3s/example-apache-volume-claim/apache-deployment.yaml
parent26c057da0d73adb9546a6e464d79208e31b28cc9 (diff)
migrate to be a helm chart
Diffstat (limited to 'f3s/example-apache-volume-claim/apache-deployment.yaml')
-rw-r--r--f3s/example-apache-volume-claim/apache-deployment.yaml41
1 files changed, 0 insertions, 41 deletions
diff --git a/f3s/example-apache-volume-claim/apache-deployment.yaml b/f3s/example-apache-volume-claim/apache-deployment.yaml
deleted file mode 100644
index 78706a3..0000000
--- a/f3s/example-apache-volume-claim/apache-deployment.yaml
+++ /dev/null
@@ -1,41 +0,0 @@
-# Apache HTTP Server Deployment
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: apache-deployment
- namespace: test
-spec:
- replicas: 2
- selector:
- matchLabels:
- app: apache
- template:
- metadata:
- labels:
- app: apache
- spec:
- containers:
- - name: apache
- image: httpd:latest
- ports:
- # Container port where Apache listens
- - containerPort: 80
- readinessProbe:
- httpGet:
- path: /
- port: 80
- initialDelaySeconds: 5
- periodSeconds: 10
- livenessProbe:
- httpGet:
- path: /
- port: 80
- initialDelaySeconds: 15
- periodSeconds: 10
- volumeMounts:
- - name: apache-htdocs
- mountPath: /usr/local/apache2/htdocs/
- volumes:
- - name: apache-htdocs
- persistentVolumeClaim:
- claimName: example-apache-pvc