summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-01-27 21:30:32 +0200
committerPaul Buetow <paul@buetow.org>2026-01-27 21:30:32 +0200
commit224e8b0d3c5bb69f256b8d2f2971c20a8d0fc037 (patch)
treeb78a9b7752f6c2b3c83935e441edc54bcc635406
parent94c0db2c8badc141ed9f35ade9f5f47bad8b3fc7 (diff)
different namespace
-rw-r--r--f3s/apache/Justfile2
-rw-r--r--f3s/apache/helm-chart/README.md2
-rw-r--r--f3s/apache/helm-chart/templates/apache-deployment.yaml2
-rw-r--r--f3s/apache/helm-chart/templates/apache-ingress.yaml4
-rw-r--r--f3s/apache/helm-chart/templates/apache-persistent-volume.yaml2
-rw-r--r--f3s/apache/helm-chart/templates/apache-service.yaml2
6 files changed, 7 insertions, 7 deletions
diff --git a/f3s/apache/Justfile b/f3s/apache/Justfile
index 1a825b7..80968e9 100644
--- a/f3s/apache/Justfile
+++ b/f3s/apache/Justfile
@@ -1,4 +1,4 @@
-NAMESPACE := "test"
+NAMESPACE := "services"
APP_NAME := "apache"
status:
diff --git a/f3s/apache/helm-chart/README.md b/f3s/apache/helm-chart/README.md
index 2ea4096..14522b9 100644
--- a/f3s/apache/helm-chart/README.md
+++ b/f3s/apache/helm-chart/README.md
@@ -7,5 +7,5 @@ This chart deploys a simple Apache web server with a persistent volume claim.
To install the chart with the release name `my-release`, run the following command:
```bash
-helm install apache . --namespace test --create-namespace
+helm install apache . --namespace services --create-namespace
``` \ No newline at end of file
diff --git a/f3s/apache/helm-chart/templates/apache-deployment.yaml b/f3s/apache/helm-chart/templates/apache-deployment.yaml
index aa9e65a..14bf573 100644
--- a/f3s/apache/helm-chart/templates/apache-deployment.yaml
+++ b/f3s/apache/helm-chart/templates/apache-deployment.yaml
@@ -3,7 +3,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: apache-deployment
- namespace: test
+ namespace: services
spec:
replicas: 2
selector:
diff --git a/f3s/apache/helm-chart/templates/apache-ingress.yaml b/f3s/apache/helm-chart/templates/apache-ingress.yaml
index b26f95b..241978e 100644
--- a/f3s/apache/helm-chart/templates/apache-ingress.yaml
+++ b/f3s/apache/helm-chart/templates/apache-ingress.yaml
@@ -2,8 +2,8 @@ apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: apache-ingress
- namespace: test
- namespace: test
+ namespace: services
+ namespace: services
annotations:
spec.ingressClassName: traefik
traefik.ingress.kubernetes.io/router.entrypoints: web
diff --git a/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml b/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
index b04c06f..ca3e9e0 100644
--- a/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
+++ b/f3s/apache/helm-chart/templates/apache-persistent-volume.yaml
@@ -17,7 +17,7 @@ apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: apache-pvc
- namespace: test
+ namespace: services
spec:
storageClassName: ""
volumeName: apache-pv
diff --git a/f3s/apache/helm-chart/templates/apache-service.yaml b/f3s/apache/helm-chart/templates/apache-service.yaml
index 1105e3a..e3babff 100644
--- a/f3s/apache/helm-chart/templates/apache-service.yaml
+++ b/f3s/apache/helm-chart/templates/apache-service.yaml
@@ -4,7 +4,7 @@ metadata:
labels:
app: apache
name: apache-service
- namespace: test
+ namespace: services
spec:
ports:
- name: web