This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #### WAY with crictl | |
| #### TODO validate crictl with docker runtime !! | |
| # Get all pods of a specific node | |
| #kubectl get po --field-selector=spec.nodeName="fluffy-master" --all-namespaces | |
| kubectl get --all-namespaces po --field-selector=spec.nodeName=="$(hostname)" -o json | jq -r '.items[] | select(.status.hostIP!=.status.podIP) | "\(.metadata.name) \(.metadata.namespace)"' | |
| # Get the Pod ID of the Pod with crictl | |
| POD_ID=$(sudo crictl pods --name=nginx-6f858d4d45-vnszm --namespace=default -q --no-trunc) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Desktop build | |
| MAKE="make -j 4 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf-" | |
| # C.H.I.P. build | |
| #MAKE="make" | |
| CDIR=$PWD | |
| LINUX=$CDIR/CHIP-linux | |
| WIFI=$CDIR/RTL8723BS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/arm 4.4.11 Kernel Configuration | |
| # | |
| CONFIG_ARM=y | |
| CONFIG_ARM_HAS_SG_CHAIN=y | |
| CONFIG_NEED_SG_DMA_LENGTH=y | |
| CONFIG_ARM_DMA_USE_IOMMU=y | |
| CONFIG_ARM_DMA_IOMMU_ALIGNMENT=8 | |
| CONFIG_MIGHT_HAVE_PCI=y |