File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -495,12 +495,11 @@ storage:
495495 storageClass: "${STORAGE_METANODE_WEED_PERSISTENCE_STORAGE_CLASS} "
496496 datanode:
497497 weed:
498- replicas: ${STORAGE_DATANODE_WEED_REPLICAS:- 3 }
498+ replicas: ${STORAGE_DATANODE_WEED_REPLICAS:- 4 }
499499 persistence:
500- hdd:
501- enabled: true
502- size: ${STORAGE_DATANODE_WEED_PERSISTENCE_SIZE:- 10Gi}
503- storageClass: "${STORAGE_DATANODE_WEED_PERSISTENCE_STORAGE_CLASS} "
500+ enabled: true
501+ size: ${STORAGE_DATANODE_WEED_PERSISTENCE_SIZE:- 10Gi}
502+ storageClass: "${STORAGE_DATANODE_WEED_PERSISTENCE_STORAGE_CLASS} "
504503
505504rabbitmq:
506505 replicas: ${RABBITMQ_REPLICAS:- 1}
Original file line number Diff line number Diff line change 22set -eo pipefail
33shopt -s expand_aliases
44
5+ # clean cilium
56ip link delete cilium_host > /dev/null 2>&1 || true
67ip link delete cilium_net > /dev/null 2>&1 || true
78ip link delete cilium_vxlan > /dev/null 2>&1 || true
89ip link delete nodelocaldns > /dev/null 2>&1 || true
10+ iptables-save | grep -iv cilium | iptables-restore || true
11+ ip6tables-save | grep -iv cilium | ip6tables-restore || true
912
1013/usr/local/bin/k3s-killall.sh
1114
Original file line number Diff line number Diff line change @@ -132,14 +132,9 @@ storage:
132132 weed :
133133 replicas : 3
134134 persistence :
135- ssd :
136- enabled : false
137- size : 5Gi
138- storageClass : " "
139- hdd :
140- enabled : false
141- size : 5Gi
142- storageClass : " "
135+ enabled : false
136+ size : 5Gi
137+ storageClass : " "
143138 # The following parameters are configured only when using an off-cluster Storage instance
144139 lookup : path
145140 health : " "
You can’t perform that action at this time.
0 commit comments