I hereby claim:
- I am gvych on github.
- I am vyacheslav (https://keybase.io/vyacheslav) on keybase.
- I have a public key ASDQneVVIQ7ID9HIu-Xo-FvxWplxG88IxsnUMEYGbfue-Qo
To claim this, I am signing this object:
log_format json_combined escape=json | |
'{' | |
'"time_local":"$time_local",' | |
'"remote_addr":"$remote_addr",' | |
'"remote_user":"$remote_user",' | |
'"upstream_addr":"$upstream_addr",' | |
'"request":"$request",' | |
'"status": "$status",' | |
'"body_bytes_sent":"$body_bytes_sent",' | |
'"request_time":"$request_time",' |
curl -w @<(echo "\n | |
time_namelookup: %{time_namelookup}s\n | |
time_connect: %{time_connect}s\n | |
time_appconnect: %{time_appconnect}s\n | |
time_pretransfer: %{time_pretransfer}s\n | |
time_redirect: %{time_redirect}s\n | |
time_starttransfer: %{time_starttransfer}s\n | |
----------\n | |
time_total: %{time_total}s\n") -s -o NULL https://ya.ru/ |
server { | |
listen 8080 default; | |
proxy_ssl_server_name on; | |
location / { | |
proxy_pass https://<external_host>; | |
proxy_set_header Accept-Encoding "disabled"; | |
} | |
} |
curl -fsSL https://github.com/derailed/k9s/releases/download/0.8.2/k9s_0.8.2_Linux_x86_64.tar.gz | tar -xvz -f - -C /usr/local/bin/ k9s | |
curl -fsSL https://storage.googleapis.com/kubernetes-helm/helm-v2.8.1-linux-amd64.tar.gz | \ | |
sudo tar -xvz --strip=1 -f - -C /usr/local/bin/ linux-amd64/helm | |
curl -L "https://github.com/docker/compose/releases/download/1.25.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
wget -O - https://get.docker.com/ | sh | |
mkdir -p ~/bin; cd ~/bin; curl -L https://raw.githubusercontent.com/flant/multiwerf/master/get.sh | bash |
spec: | |
containers: | |
- image: ... | |
volumeMounts: | |
- mountPath: /app/config.yml | |
name: config-volume | |
subPath: config.yml | |
volumes: | |
- configMap: | |
defaultMode: 420 |
PART 1 | |
^ ^ v v | |
E|------------|--3--3-3--3-----------3-----3-----3----|-----------------3--3--3--3--| | |
B|------------|--3--3-3--3-----------3-----3-----3----|-----------3--3--3--3--3--3--| | |
G|------------|--0--0-0--0--0--------0-----0-----0----|-----------0--0--0--0--0--0--| | |
D|------0--2--|----------------2--0-------------------|-----0--2--2--2--------------| | |
A|-0h2--------|---------------------------------------|-0h2-------------------------| | |
E|------------|-------------------------3-----3-----3-|-----------------------------| |
Encrypt: | |
echo secure message to send | openssl rsautl -encrypt -oaep -pubin -inkey <(ssh-keygen -e -f ~/.ssh/id_rsa.pub -m PKCS8) | base64 | |
O4O4V...PawicXqomdrY71Qxw== | |
Decrypt: | |
echo 'O4O4V...PawicXqomdrY71Qxw==' | base64 -d | openssl rsautl -decrypt -oaep -inkey ~/.ssh/id_rsa | |
Enter pass phrase for .ssh/id_rsa: | |
secure message to send |
I hereby claim:
To claim this, I am signing this object:
jq '.result.items[].transactions[]| { | |
timestamp: .timestamp, | |
address: .transfers[].address, | |
amount: .transfers[].amount, | |
transactionHash: .transactionHash | |
} ' |
- set_fact: | |
conf: | |
dictionary: | |
'{ "{{name}}": json }' |