1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00

Fix rook-ceph namespace mismatch

This commit is contained in:
Benjamin Durham
2022-10-03 15:33:30 +13:00
committed by GitHub
parent 663509a575
commit f3dd36d049

View File

@@ -24,13 +24,13 @@ To start off with, we need to deploy the ceph operator into the cluster, after w
### Namespace
We need a namespace to deploy our HelmRelease and associated ConfigMaps into. Per the [flux design](/kubernetes/deployment/flux/), I create this example yaml in my flux repo at `/bootstrap/namespaces/namespace-rook-system.yaml`:
We need a namespace to deploy our HelmRelease and associated ConfigMaps into. Per the [flux design](/kubernetes/deployment/flux/), I create this example yaml in my flux repo at `/bootstrap/namespaces/namespace-rook-ceph.yaml`:
```yaml title="/bootstrap/namespaces/namespace-rook-ceph.yaml"
apiVersion: v1
kind: Namespace
metadata:
name: rook-system
name: rook-ceph
```
### HelmRepository