cv and coverletter

This commit is contained in:
Allen Languor
2021-08-01 12:13:43 +03:00
parent fb10ca03e7
commit 46c9cedd32
26 changed files with 271 additions and 636 deletions

View File

@ -4,17 +4,18 @@
---
k8s_master:
hosts:
91.232.225.93:
10.42.82.100:
vars:
node_type: "master"
ansible_user: "overlord"
key_path: ~/.ssh/allanger.pub,
key_path: ~/.ssh/allanger.pub
ansible_ssh_common_args: '-o "ProxyCommand ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -W %h:%p 91.232.225.93"'
k8s_servant:
k8s_worker:
hosts:
10.42.82.101:
10.42.82.102:
10.42.82.103:
10.42.82.110:
10.42.82.111:
10.42.82.112:
vars:
node_type: "worker"
ansible_user: "overlord"

View File

@ -0,0 +1,40 @@
---
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
name: grafana
namespace: prometheus
spec:
selector:
# Which pods we want to expose as Istio router
# This label points to the default one installed from file istio-demo.yaml
istio: ingressgateway
servers:
- port:
number: 80
name: http
protocol: HTTP
# Here we specify which Kubernetes service names
# we want to serve through this Gateway
hosts:
- "*"
---
apiVersion: networking.istio.io/v1alpha3
kind: VirtualService
metadata:
name: grafana
namespace: prometheus
spec:
hosts:
- "*"
gateways:
- grafana
http:
- match:
- uri:
prefix: /
route:
- destination:
host: prometheus-grafana
port:
number: 80

View File

@ -0,0 +1,12 @@
apiVersion: v1
kind: ConfigMap
metadata:
namespace: metallb-system
name: config
data:
config: |
address-pools:
- name: default
protocol: layer2
addresses:
- 91.232.225.63-91.232.225.65