create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
import ( | |
"context" | |
"errors" | |
"testing" | |
"github.com/google/go-cmp/cmp" | |
"go.uber.org/zap" | |
"github.com/hashlab/issuing-processor/internal/pbcsu" | |
"github.com/hashlab/issuing-processor/pkg/pbcommon" |
sudo apt-get --purge remove wine | |
sudo apt-get purge wine* ; sudo dpkg --purge wine* | |
sudo apt-get purge wine64 ; sudo dpkg --purge wine64 | |
sudo apt-get autoclean | |
sudo apt-get clean | |
sudo apt-get autoremove | |
cd $HOME | |
rm -r .wine |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: gwa-auth | |
labels: | |
app: gwa-auth | |
spec: | |
selector: | |
matchLabels: | |
app: gwa-auth |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
annotations: | |
deployment.kubernetes.io/revision: "1" | |
creationTimestamp: 2018-11-24T15:56:24Z | |
generation: 1 | |
labels: | |
run: gwa-auth-web | |
name: gwa-auth-web |
apiVersion: extensions/v1beta1 | |
kind: Deployment | |
metadata: | |
annotations: | |
deployment.kubernetes.io/revision: "1" | |
creationTimestamp: 2018-11-24T15:56:24Z | |
generation: 1 | |
labels: | |
run: gwa-auth-web | |
name: gwa-auth-web |
if [$1 == ""] | |
then | |
echo "<APP> required!" | |
echo "deploy.sh <APP> <VERSION>" | |
exit | |
fi | |
if [$2 == ""] | |
then | |
echo "<VERSION> required!" |
# How to user | |
# configure_proxy_postgres_gke.sh <PATH_TO_KEY_FILE> <INSTANCE_CONNECTION_NAME> | |
if [$1 == ""] | |
then | |
echo "<PATH_TO_KEY_FILE required>!" | |
echo "configure_proxy_postgres_gke.sh <PATH_TO_KEY_FILE> <INSTANCE_CONNECTION_NAME>" | |
exit | |
fi | |
if [$2 == ""] |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: redis | |
spec: | |
ports: | |
- port: 6379 | |
name: redis | |
clusterIP: None | |
selector: |