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: v1 | |
kind: ServiceAccount | |
metadata: | |
name: scorecard-kuttl | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: scorecard-kuttl | |
roleRef: |
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: v1 | |
kind: Pod | |
metadata: | |
name: memcached-operator-index-server | |
namespace: default | |
spec: | |
containers: | |
- command: | |
- /bin/bash | |
- -c |
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
git branch -vv | gawk '{print $1,$3,$4}' | grep -E '\[origin/.+: gone\]' | gawk '{print $1}' | xargs git branch -D |
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
package main | |
import ( | |
"bytes" | |
"io/ioutil" | |
"log" | |
"os" | |
"strings" | |
"golang.org/x/net/html" |
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
# From https://askubuntu.com/questions/113544/how-can-i-reduce-the-file-size-of-a-scanned-pdf-file/256449#256449 | |
gs -sDEVICE=pdfwrite \ | |
-dCompatibilityLevel=1.4 \ | |
# -dPDFSETTINGS=/screen lower quality, smaller size. (72 dpi) | |
# -dPDFSETTINGS=/ebook for better quality, but slightly larger pdfs. (150 dpi) | |
# -dPDFSETTINGS=/prepress output similar to Acrobat Distiller "Prepress Optimized" setting (300 dpi) | |
# -dPDFSETTINGS=/printer selects output similar to the Acrobat Distiller "Print Optimized" setting (300 dpi) | |
# -dPDFSETTINGS=/default selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file | |
-dPDFSETTINGS=/ebook \ | |
-dNOPAUSE -dQUIET -dBATCH \ |
This file has been truncated, but you can view the full file.
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
2017/07/14 13:29:25 [INFO] Terraform version: 0.9.6 85e0979c6af6a15345c9131e4478ba712bb3c21d | |
2017/07/14 13:29:25 [INFO] Go runtime version: go1.8 | |
2017/07/14 13:29:25 [INFO] CLI args: []string{"/usr/local/bin/terraform", "plan", "-var-file=terraform.tfvars", "platforms/aws"} | |
2017/07/14 13:29:25 [DEBUG] Detected home directory from env var: /home/estro | |
2017/07/14 13:29:25 [DEBUG] Detected home directory from env var: /home/estro | |
2017/07/14 13:29:25 [DEBUG] Attempting to open CLI config file: /home/estro/.terraformrc | |
2017/07/14 13:29:25 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2017/07/14 13:29:25 [DEBUG] Detected home directory from env var: /home/estro | |
2017/07/14 13:29:25 [INFO] CLI command args: []string{"plan", "-var-file=terraform.tfvars", "platforms/aws"} | |
2017/07/14 13:29:25 [DEBUG] command: loading backend config file: /home/estro/Projects/estro-asg-tag-test_2017-07-14_13-27-05/platforms/aws |
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
#!/usr/bin/env bash | |
## Tags route53 hosted zones not already tagged with the specified key(s) | |
# Example tag file: | |
# [ | |
# { | |
# "Key": "expirationDate", | |
# "Value": "2017-06-22" | |
# } | |
# ] |