Compare commits
No commits in common. "0de1620630e993a3196ad3bed2928e1a0b2f41b9" and "37173b482cbcd82958cb799c767d6a76be5ae384" have entirely different histories.
0de1620630
...
37173b482c
5 changed files with 8 additions and 139 deletions
|
@ -43,6 +43,12 @@ spec:
|
||||||
enabled: true
|
enabled: true
|
||||||
ipam:
|
ipam:
|
||||||
mode: kubernetes
|
mode: kubernetes
|
||||||
|
policyEnforcementMode: always # enforce network policies
|
||||||
|
policyAuditMode: true # do not block traffic
|
||||||
|
hostFirewall:
|
||||||
|
enabled: true # enable host policies
|
||||||
|
extraConfig:
|
||||||
|
allow-localhost: policy # enable policies for localhost
|
||||||
kubeProxyReplacement: true
|
kubeProxyReplacement: true
|
||||||
k8sServiceHost: 127.0.0.1
|
k8sServiceHost: 127.0.0.1
|
||||||
k8sServicePort: 7445
|
k8sServicePort: 7445
|
||||||
|
|
|
@ -2,9 +2,9 @@ apiVersion: v1
|
||||||
kind: Pod
|
kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: rocky-nenya
|
name: rocky-nenya
|
||||||
namespace: kube-system
|
namespace: default
|
||||||
spec:
|
spec:
|
||||||
# nodeName: nenya
|
nodeName: nenya
|
||||||
containers:
|
containers:
|
||||||
- name: rocky
|
- name: rocky
|
||||||
image: rockylinux:9
|
image: rockylinux:9
|
|
@ -1,15 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
cilium install \
|
|
||||||
--helm-set=ipam.mode=kubernetes \
|
|
||||||
--helm-set=kubeProxyReplacement=true \
|
|
||||||
--helm-set=securityContext.capabilities.ciliumAgent="{CHOWN,KILL,NET_ADMIN,NET_RAW,IPC_LOCK,SYS_ADMIN,SYS_RESOURCE,DAC_OVERRIDE,FOWNER,SETGID,SETUID}" \
|
|
||||||
--helm-set=securityContext.capabilities.cleanCiliumState="{NET_ADMIN,SYS_ADMIN,SYS_RESOURCE}" \
|
|
||||||
--helm-set=cgroup.autoMount.enabled=false \
|
|
||||||
--helm-set=cgroup.hostRoot=/sys/fs/cgroup \
|
|
||||||
--helm-set=k8sServiceHost=127.0.0.1 \
|
|
||||||
--helm-set=k8sServicePort=7445 \
|
|
||||||
--helm-set=bgpControlPlane.enabled=true \
|
|
||||||
--helm-set=bgp.enabled=false \
|
|
||||||
--helm-set=bgp.announce.loadbalancerIP=true \
|
|
||||||
--helm-set=bgp.announce.podCIDR=false
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
# remove all rook resources
|
|
||||||
kubectl patch cephfilesystems ceph-filesystem -p '{"metadata":{"finalizers":null}}' --type=merge -n rook-ceph
|
|
||||||
kubectl delete cephfilesystems ceph-filesystem -n rook-ceph
|
|
||||||
kubectl patch cephblockpools ceph-blockpool -p '{"metadata":{"finalizers":null}}' --type=merge -n rook-ceph
|
|
||||||
kubectl delete cephblockpools ceph-blockpool -n rook-ceph
|
|
||||||
kubectl patch cephobjectstores ceph-objectstore -p '{"metadata":{"finalizers":null}}' --type=merge -n rook-ceph
|
|
||||||
kubectl delete cephobjectstores ceph-objectstore -n rook-ceph
|
|
||||||
kubectl patch CephFilesystemSubVolumeGroup ceph-filesystem-csi -p '{"metadata":{"finalizers":null}}' --type=merge -n rook-ceph
|
|
||||||
kubectl delete CephFilesystemSubVolumeGroup ceph-filesystem-csi -n rook-ceph
|
|
|
@ -1,111 +0,0 @@
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Pod
|
|
||||||
metadata:
|
|
||||||
name: disk-wipe-nessa
|
|
||||||
namespace: rook-ceph
|
|
||||||
spec:
|
|
||||||
restartPolicy: Never
|
|
||||||
nodeName: talos-nz9-4fz
|
|
||||||
containers:
|
|
||||||
- name: disk-wipe
|
|
||||||
image: ghcr.io/onedr0p/alpine:3.19.0@sha256:51632d23e56ae28a34f8e90df6fe8d02730b5462697ae52e8b01ad6484497819
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
resources: {}
|
|
||||||
env:
|
|
||||||
- name: CEPH_DISK
|
|
||||||
value: "/dev/xvdb"
|
|
||||||
command:
|
|
||||||
[
|
|
||||||
"/bin/sh",
|
|
||||||
"-c"
|
|
||||||
]
|
|
||||||
args:
|
|
||||||
- apk add --no-cache sgdisk util-linux parted;
|
|
||||||
sgdisk --zap-all $CEPH_DISK;
|
|
||||||
blkdiscard $CEPH_DISK;
|
|
||||||
dd if=/dev/zero bs=1M count=1000 oflag=direct of=$CEPH_DISK;
|
|
||||||
partprobe $CEPH_DISK;
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /mnt/host_var
|
|
||||||
name: host-var
|
|
||||||
volumes:
|
|
||||||
- name: host-var
|
|
||||||
hostPath:
|
|
||||||
path: /var
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Pod
|
|
||||||
metadata:
|
|
||||||
name: disk-wipe-nienna
|
|
||||||
namespace: rook-ceph
|
|
||||||
spec:
|
|
||||||
restartPolicy: Never
|
|
||||||
nodeName: talos-9c9-dj0
|
|
||||||
containers:
|
|
||||||
- name: disk-wipe
|
|
||||||
image: ghcr.io/onedr0p/alpine:3.19.0@sha256:51632d23e56ae28a34f8e90df6fe8d02730b5462697ae52e8b01ad6484497819
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
resources: {}
|
|
||||||
env:
|
|
||||||
- name: CEPH_DISK
|
|
||||||
value: "/dev/xvdb"
|
|
||||||
command:
|
|
||||||
[
|
|
||||||
"/bin/sh",
|
|
||||||
"-c"
|
|
||||||
]
|
|
||||||
args:
|
|
||||||
- apk add --no-cache sgdisk util-linux parted;
|
|
||||||
sgdisk --zap-all $CEPH_DISK;
|
|
||||||
blkdiscard $CEPH_DISK;
|
|
||||||
dd if=/dev/zero bs=1M count=1000 oflag=direct of=$CEPH_DISK;
|
|
||||||
partprobe $CEPH_DISK;
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /mnt/host_var
|
|
||||||
name: host-var
|
|
||||||
volumes:
|
|
||||||
- name: host-var
|
|
||||||
hostPath:
|
|
||||||
path: /var
|
|
||||||
|
|
||||||
---
|
|
||||||
apiVersion: v1
|
|
||||||
kind: Pod
|
|
||||||
metadata:
|
|
||||||
name: disk-wipe-orome
|
|
||||||
namespace: rook-ceph
|
|
||||||
spec:
|
|
||||||
restartPolicy: Never
|
|
||||||
nodeName: talos-dz9-5ys
|
|
||||||
containers:
|
|
||||||
- name: disk-wipe
|
|
||||||
image: ghcr.io/onedr0p/alpine:3.19.0@sha256:51632d23e56ae28a34f8e90df6fe8d02730b5462697ae52e8b01ad6484497819
|
|
||||||
securityContext:
|
|
||||||
privileged: true
|
|
||||||
resources: {}
|
|
||||||
env:
|
|
||||||
- name: CEPH_DISK
|
|
||||||
value: "/dev/xvdb"
|
|
||||||
|
|
||||||
command:
|
|
||||||
[
|
|
||||||
"/bin/sh",
|
|
||||||
"-c"
|
|
||||||
]
|
|
||||||
args:
|
|
||||||
- apk add --no-cache sgdisk util-linux parted;
|
|
||||||
sgdisk --zap-all $CEPH_DISK;
|
|
||||||
blkdiscard $CEPH_DISK;
|
|
||||||
dd if=/dev/zero bs=1M count=1000 oflag=direct of=$CEPH_DISK;
|
|
||||||
partprobe $CEPH_DISK;
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /mnt/host_var
|
|
||||||
name: host-var
|
|
||||||
volumes:
|
|
||||||
- name: host-var
|
|
||||||
hostPath:
|
|
||||||
path: /var
|
|
Loading…
Reference in a new issue