I hereby claim:
- I am eaapa on github.
- I am ernoaapa (https://keybase.io/ernoaapa) on keybase.
- I have a public key whose fingerprint is 812A E04B 88AF 10C2 89E8 D758 B085 CBF6 2216 6757
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# Fetches all GitHub organization users SSH keys and print out | |
# Can be used to update ~/.ssh/authorized_keys file | |
# | |
# Eg. | |
# fetch-github-organization-members-ssh-keys.sh -o my-org -t TOKEN > ~/.ssh/authorized_keys | |
# | |
function parse_arguments() { |
#!/bin/bash | |
# | |
# Install protobuf C++ library | |
# As described here: https://github.com/google/protobuf/blob/master/src/README.md#c-installation---unix | |
# | |
# NOTE: | |
# You should use 'libprotobuf10' package when it's available! | |
# | |
set -e |
I hereby claim:
To claim this, I am signing this object:
metadata: | |
name: "foo" | |
spec: | |
containers: | |
- name: "foo" | |
image: "docker.io/eaapa/hello-world:latest" |
#!/bin/sh | |
# | |
# Print Pods which are Pending or not Ready for some reaosn | |
# | |
kubectl get pods --all-namespaces -o go-template='{{ range $item := .items }}{{ range .status.conditions }}{{ if (or (and (eq .type "PodScheduled") (eq .status "False")) (and (eq .type "Ready") (eq .status "False"))) }}{{ $item.metadata.name}} {{ end }}{{ end }}{{ end }}' |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: testing | |
name: testing | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: |