This file contains 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
apt-get install -y \ | |
apt-transport-https \ | |
binutils \ | |
build-essential \ | |
python-pip \ | |
socat \ | |
sysstat \ | |
traceroute \ | |
unzip \ | |
zip |
This file contains 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 | |
while read -r commit_hash | |
do | |
message=$( | |
git cat-file commit "${commit_hash}" | | |
sed '1,/^$/d' | |
) | |
if [ "${message:0:5}" = 'Merge' ] || [ "${message:0:6}" = 'Revert' ] |
This file contains 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 | |
printf '%s,%s,%s,%s,%s,%s,%s,%s\n' \ | |
'dir' 'usage_in_bytes' \ | |
'cache' 'total_cache' \ | |
'rss' 'total_rss' \ | |
'rss_huge' 'total_rss_huge' | |
cd /sys/fs/cgroup/memory/ |
This file contains 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 | |
printf '%s,%s,%s,%s,%s,%s,%s,%s\n' \ | |
'dir' 'usage_in_bytes' \ | |
'cache' 'total_cache' \ | |
'rss' 'total_rss' \ | |
'rss_huge' 'total_rss_huge' | |
cd /sys/fs/cgroup/memory/ |
This file contains 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 | |
win_profile_dir=$(wslpath "$(cmd.exe /c "echo %USERPROFILE%" | tr -d '\r')") | |
win_dot_kube_dir="${win_profile_dir}/.kube" | |
win_kube_config="${win_dot_kube_dir}/config" | |
wsl_dot_kube_dir="${HOME}/.kube" |
This file contains 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 | |
if [ "$_" = "${BASH_SOURCE}" ] | |
then | |
printf 'source this script, do not execute.\n' >&2 | |
exit 1 | |
fi | |
eval $(minikube docker-env --shell bash) | |
if [ -n "${DOCKER_CERT_PATH}" ] && [ "${DOCKER_CERT_PATH:0:1}" != '/' ] |
This file contains 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: v1 | |
kind: Pod | |
metadata: | |
name: example | |
spec: | |
initContainers: | |
- name: file-copy | |
image: busybox:latest | |
command: | |
- cp |
This file contains 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
# docker 17.12.1-ce | |
=> docker run | |
==> /sys/fs/cgroup/memory/memory.kmem.limit_in_bytes <== | |
18446744073709551615 | |
==> /sys/fs/cgroup/memory/memory.kmem.tcp.limit_in_bytes <== | |
18446744073709551615 | |
==> /sys/fs/cgroup/memory/memory.limit_in_bytes <== | |
18446744073709551615 |
This file contains 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
$ dpkg --list | |
Desired=Unknown/Install/Remove/Purge/Hold | |
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend | |
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) | |
||/ Name Version Architecture Description | |
+++-===========================-==================-==================-============================================================ | |
ii accountsservice 0.6.40-2ubuntu11.3 amd64 query and manipulate user account information | |
ii adduser 3.113+nmu3ubuntu4 all add and remove users and groups | |
ii apt 1.2.26 amd64 commandline package manager | |
ii apt-utils 1.2.26 amd64 package management related utility programs |
This file contains 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
FROM ubuntu:14.04 | |
RUN apt-get update | |
RUN apt-get build-dep --assume-yes \ | |
util-linux | |
RUN apt-get install --assume-yes \ | |
wget \ | |
gnupg |