After installing the keybase command-line tool onto a new / fresh computer, you may want to import your PGP key to the local keyring so that you may use the keys with GPG.
Import your PUBLIC PGP key:
keybase pgp export|gpg --import -After installing the keybase command-line tool onto a new / fresh computer, you may want to import your PGP key to the local keyring so that you may use the keys with GPG.
Import your PUBLIC PGP key:
keybase pgp export|gpg --import -| # Inspired by: https://stackoverflow.com/questions/42170380/how-to-add-users-to-kubernetes-kubectl | |
| # this script creates a service account (user1) on a Kubernetes cluster (tested with AWS EKS 1.9) | |
| # prereqs: a kubectl ver 1.10 installed and proper configuration of the heptio authenticator | |
| # this has been tested on Linux in a Cloud9 environment (for MacOS the syntax may be slightly different) | |
| ************************************************** | |
| ******* Create an account ******* | |
| ************************************************** | |
| # Create service account for user user1 | |
| kubectl create sa user1 |
Kong, Traefik, Caddy, Linkerd, Fabio, Vulcand, and Netflix Zuul seem to be the most common in microservice proxy/gateway solutions. Kubernetes Ingress is often a simple Ngnix, which is difficult to separate the popularity from other things.
This is just a picture of this link from March 2, 2019
Originally, I had included some other solution
| kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod |
| 2017-05-11 16:00:00 1832.97 USD -0.06% 619.75 + 0.0447 null 1.91% 0.031060 BTC 2897.41 USD 195.43% +61.48% | |
| { days: 90, | |
| profit_stop_enable_pct: 10, | |
| profit_stop_pct: 1, | |
| sell_rate: -0.006, | |
| trend_ema: 36, | |
| period: '1h', | |
| strategy: 'trend_ema_rate', | |
| sell_stop_pct: 4, | |
| buy_stop_pct: 0, |
| # Recipe on running Unity (or any OpenGL based application) offscreen on your local Linux machine. | |
| # Requirement: X server, NVIDIA drivers installed and working correctly. | |
| # Tested on Ubuntu14.04. | |
| # Summary: install XDummy and VirtualGL, configure virtual framebuffer, run your application via VirtualGL | |
| # install XDummy | |
| sudo apt-get update | |
| sudo apt-get install xorg-video-abi-15 xserver-xorg-video-dummy |
| #!groovy | |
| /* | |
| * This script configures the Jenkins base URL. | |
| */ | |
| import jenkins.model.JenkinsLocationConfiguration | |
| JenkinsLocationConfiguration location = Jenkins.instance.getExtensionList('jenkins.model.JenkinsLocationConfiguration')[0] | |
| location.url = 'https://jenkins-as-code-poc.devtail.io/' |
| #! /bin/bash | |
| function valid_required_envs() { | |
| # Configs | |
| required_envs=(KUBE_CONTEXT KUBE_SERVER) | |
| # Securities | |
| required_envs+=(KUBE_CERTIFICATE_AUTHORITY) | |
| required_envs+=(KUBE_CLIENT_CERTIFICATE KUBE_CLIENT_KEY) | |
| errors=() |
| [user] | |
| name = Julien Bisconti | |
| email = ****** | |
| [core] | |
| excludesfile = ~/.gitignore | |
| pager = diff-so-fancy | less --tabs=1,5 -R | |
| editor = /usr/bin/vim | |
| [alias] | |
| wow = log --all --graph --decorate --oneline --simplify-by-decoration |