Ferramenta | Descrição |
---|---|
kubectl | Ferramenta de linha de comando para Kubernetes |
minikube | Cluster Kubernetes local para desenvolvimento e testes |
install docker
sudo pacman -S docker
start docker daemom
sudo systemctl start docker.service
start docker daemom on system boot
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 | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
BLUE='\033[0;34m' | |
CYAN='\033[0;36m' | |
NC='\033[0m' | |
section() { |
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
function extractAndProcessNames(xpath) { | |
const results = new Set(); | |
const xpathResult = document.evaluate( | |
xpath, | |
document, | |
null, | |
XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, | |
null | |
); |