Let's look at some basic kubectl output options.
Our intention is to list nodes (with their AWS InstanceId) and Pods (sorted by node).
We can start with:
kubectl get no
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| A warning occurred (42 apples) | |
| An error occurred |
| #!/bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: dockercompose | |
| # Required-Start: $docker | |
| # Required-Stop: $docker | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Docker Services | |
| ### END INIT INFO |
| sudo apt-get install openjdk-7-jre | |
| sudo mkdir /usr/share/elasticsearch | |
| cd /usr/share/elasticsearch | |
| sudo wget https://download.elasticsearch.org/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.2.0/elasticsearch-2.2.0.tar.gz | |
| sudo wget https://download.elastic.co/kibana/kibana/kibana-4.4.0-linux-x64.tar.gz | |
| sudo tar -zxvf elasticsearch-2.2.0.tar.gz |
| // ==UserScript== | |
| // @name YouTube - Hide Live Chat | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Hide live chat by default on live streams | |
| // @author LM | |
| // @match https://www.youtube.com/watch* | |
| // @run-at document-end | |
| // @grant none | |
| // ==/UserScript== |
Latest News: http://site.api.espn.com/apis/site/v2/sports/football/college-football/news
Latest Scores: http://site.api.espn.com/apis/site/v2/sports/football/college-football/scoreboard
| import requests | |
| import geohash | |
| import json | |
| from datetime import datetime, timezone | |
| from influxdb import InfluxDBClient | |
| # noinspection PyUnresolvedReferences | |
| from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
| # noinspection PyUnresolvedReferences |
| #!/bin/bash | |
| #Jason T. 2-6-2018 | |
| # Check specifically for the run command | |
| if [[ $# -ge 2 && $1 == "run" ]]; then | |
| # Tell docker to share the following folders with the base system | |
| # This allows the docker containers to find CUDA, cuDNN, TensorRT | |
| LIB_MAPS="/usr/lib/aarch64-linux-gnu \ | |
| /usr/local/cuda \ | |
| /usr/local/cuda/lib64" |
| shell_command: | |
| rtlamr_start: 'python3.6 /home/pi/work/rtlamrmqtt.py' | |
| kill_rtlamr: 'pkill -f rtlamr' | |
| automation: | |
| - action: | |
| - data: {} | |
| service: shell_command.rtlamr_start | |
| alias: Start RTLAMR Script | |
| condition: [] |