We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94df29b commit 1dc29b7Copy full SHA for 1dc29b7
hack/local-up-cluster.sh
@@ -802,12 +802,14 @@ function wait_coredns_available(){
802
exit 1
803
fi
804
805
- # bump log level
806
- echo "6" | sudo tee /proc/sys/kernel/printk
+ if [[ "${ENABLE_DAEMON}" = false ]]; then
+ # bump log level
807
+ echo "6" | sudo tee /proc/sys/kernel/printk
808
- # loop through and grab all things in dmesg
809
- dmesg > "${LOG_DIR}/dmesg.log"
810
- dmesg -w --human >> "${LOG_DIR}/dmesg.log" &
+ # loop through and grab all things in dmesg
+ dmesg > "${LOG_DIR}/dmesg.log"
811
+ dmesg -w --human >> "${LOG_DIR}/dmesg.log" &
812
+ fi
813
}
814
815
function start_kubelet {
0 commit comments