I hereby claim:
- I am bartoszmajsak on github.
- I am bartoszmajsak (https://keybase.io/bartoszmajsak) on keybase.
- I have a public key whose fingerprint is D4AF D900 4307 AE0B 568C 6E0B A33A 142A EAFE C164
To claim this, I am signing this object:
#!/bin/bash | |
# This way you can customize which branches should be skipped when | |
# prepending commit message. | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop test) | |
fi | |
BRANCH_NAME=$(git symbolic-ref --short HEAD) | |
BRANCH_NAME="${BRANCH_NAME##*/}" |
... | |
[alias] | |
synchronize-with-upstream = !~/synchronize-with-upstream.sh | |
... |
#!/bin/bash | |
# This way you can customize which branches should be skipped when | |
# prepending commit message. | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop test) | |
fi | |
if [ -z "$MAIN_BRANCH" ]; then | |
MAIN_BRANCH="develop" |
I hereby claim:
To claim this, I am signing this object:
We love contributions! Thank you so much for investing time in making our toolset better! We have gathered some hints to make the process smoother for both sides.
We have certain coding convention in place, please have a look at code-settings repository.
#!/usr/bin/env bash | |
while test $# -gt 0; do | |
case "$1" in | |
-h|--help) | |
echo "Options:" | |
echo "-r github repository name, together with user or organization, e.g. fabric8io/kubernetes-model" | |
echo "-t github token (https://github.com/settings/tokens)" | |
exit 0 | |
;; |
Istio: Canaries and Kubernetes, Microservices and Service Mesh | DevNation Live
Free Red Hat Developers book about Istio published by O’Reilly https://bit.ly/istio-book
snap install microk8s --classic | |
sudo ufw default allow routed | |
sudo iptables -P FORWARD ACCEPT | |
## Fedora specific fix - see https://github.com/ubuntu/microk8s/issues/408#issuecomment-581100625 | |
sudo firewall-cmd --zone=trusted --add-masquerade --permanent | |
sudo firewall-cmd --zone=trusted --add-interface=cni0 --permanent | |
sudo firewall-cmd --reload | |
microk8s.enable dns dashboard metrics-server |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
creationTimestamp: "2022-07-15T11:30:12Z" | |
name: productpage-v1 | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: productpage |