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
| static_resources: | |
| listeners: | |
| - address: | |
| socket_address: | |
| address: 0.0.0.0 | |
| port_value: 9292 | |
| filter_chains: | |
| - filters: | |
| - name: envoy.tcp_proxy | |
| config: |
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
| { | |
| "admin": { | |
| "access_log_path": "/home/Library/envoy/cockroach_front_admin_access.log", | |
| "address": { | |
| "socket_address": { | |
| "address": "::", | |
| "port_value": 9007 | |
| } | |
| } | |
| }, |
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
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
| install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ | |
| rm microsoft.gpg | |
| sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main" > /etc/apt/sources.list.d/vscode.list' | |
| apt-get install apt-transport-https -y | |
| apt-get update | |
| apt-get install -y sudo \ | |
| wget \ | |
| xterm \ | |
| vim \ |
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
| # ------- Make CA --------- | |
| makecert.exe ^ | |
| -n "CN=CARoot" ^ | |
| -r ^ | |
| -pe ^ | |
| -a sha512 ^ | |
| -len 4096 ^ | |
| -cy authority ^ | |
| -sv CARoot.pvk ^ | |
| CARoot.cer |
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
| # ------- Make CA --------- | |
| makecert.exe ^ | |
| -n "CN=CARoot" ^ | |
| -r ^ | |
| -pe ^ | |
| -a sha512 ^ | |
| -len 4096 ^ | |
| -cy authority ^ | |
| -sv CARoot.pvk ^ | |
| CARoot.cer |
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
| for dir in agent-*/ ; do | |
| cd $dir | |
| sudo ./svc uninstall | |
| rm -rf _work/* | |
| sudo ./svc install | |
| cd .. | |
| done |
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
| for dir in agent-*/ ; do | |
| cd $dir | |
| sudo ./svc uninstall | |
| sudo rm -rf _work/* | |
| sudo ./svc install | |
| cd .. | |
| done |
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
| for dir in agent-*/ ; do | |
| cd $dir | |
| sudo ./svc.sh uninstall | |
| sudo rm -rf _work/* | |
| sudo ./svc.sh install | |
| sudo ./svc.sh start | |
| cd .. | |
| done |
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
| =IF(COUNT(FIND({0,1,2,3,4,5,6,7,8,9},E4))>0,E4,"") |
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
| apiVersion: apps/v1 | |
| kind: DaemonSet | |
| metadata: | |
| name: azure-cni-manager | |
| spec: | |
| selector: | |
| matchLabels: | |
| acn: azure-cni-manager | |
| template: | |
| metadata: |