Helm: v2.10.0 Kubectl: v1.11.2
az group create --location westeurope --name istio-issue
az aks create --resource-group istio-issue --name istio-aks-cluster --node-count 3 --node-vm-size Standard_D2_v3 --kubernetes-version 1.11.2
#!/bin/bash | |
# Configuration | |
GERRIT_BASE_URL="https://gerrit.example.com" | |
GITHUB_ORG="your-github-org" | |
GITHUB_TOKEN="your-personal-access-token" | |
REPO_LIST="repos.txt" # A file containing the list of Gerrit repositories | |
TEMP_DIR="/tmp/gerrit-to-github" | |
# Check dependencies |
resource "aws_iam_role" "opensearch_role" { | |
name = "opensearch-access-role" | |
assume_role_policy = jsonencode({ | |
Version = "2012-10-17" | |
Statement = [ | |
{ | |
Effect = "Allow" | |
Principal = { | |
Service = "es.amazonaws.com" | |
} |
# Rezepte von Sarah und Bernhard | |
## Nachtische | |
### Cinnamon Rolls | |
#### Zutaten | |
#### Teig |
# Treffen 2019-02-06 | |
## Erledigt | |
* Stadtmauer erledigt | |
* Grundstückstausch erledigt | |
## Angebote | |
### Gauer |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" type="text/css" /> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet-src.js"></script> | |
<meta charset="utf-8"> | |
<title>Leaflet JS Bin</title> | |
<style> | |
#map { | |
width:100%; |
<!DOCTYPE html> | |
<html> | |
<head> | |
<link href="https://unpkg.com/[email protected]/dist/leaflet.css" rel="stylesheet" type="text/css" /> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet-src.js"></script> | |
<meta charset="utf-8"> | |
<title>Leaflet JS Bin</title> | |
<style> | |
#map { | |
width:100%; |
/* Remove Outline on click @slackhq */ | |
button { | |
&.close { | |
&:active { | |
color: rgb(42, 128, 185); | |
opacity:1; | |
} | |
&:focus { | |
outline: none; |