mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-28 09:11:18 +00:00
- Kubernetes binaries installed for ops labs bumped up to 1.17.2 - Composed-based control plane bumped up to 1.17.2 - kuberouter now uses apps/v1 DaemonSet (compatible with 1.16+) - disable containerd (cosmetic)
129 lines
3.1 KiB
YAML
129 lines
3.1 KiB
YAML
---
|
|
apiVersion: |+
|
|
|
|
|
|
Make sure you update the line with --master=http://X.X.X.X:8080 below.
|
|
Then remove this section from this YAML file and try again.
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: kube-router-cfg
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: kube-router
|
|
data:
|
|
cni-conf.json: |
|
|
{
|
|
"cniVersion":"0.3.0",
|
|
"name":"mynet",
|
|
"plugins":[
|
|
{
|
|
"name":"kubernetes",
|
|
"type":"bridge",
|
|
"bridge":"kube-bridge",
|
|
"isDefaultGateway":true,
|
|
"ipam":{
|
|
"type":"host-local"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
k8s-app: kube-router
|
|
name: kube-router
|
|
namespace: kube-system
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: kube-router
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: kube-router
|
|
annotations:
|
|
scheduler.alpha.kubernetes.io/critical-pod: ''
|
|
spec:
|
|
serviceAccountName: kube-router
|
|
containers:
|
|
- name: kube-router
|
|
image: docker.io/cloudnativelabs/kube-router
|
|
imagePullPolicy: Always
|
|
args:
|
|
- "--run-router=true"
|
|
- "--run-firewall=true"
|
|
- "--run-service-proxy=true"
|
|
- "--master=http://X.X.X.X:8080"
|
|
env:
|
|
- name: NODE_NAME
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: spec.nodeName
|
|
- name: KUBE_ROUTER_CNI_CONF_FILE
|
|
value: /etc/cni/net.d/10-kuberouter.conflist
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 20244
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 3
|
|
resources:
|
|
requests:
|
|
cpu: 250m
|
|
memory: 250Mi
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: lib-modules
|
|
mountPath: /lib/modules
|
|
readOnly: true
|
|
- name: cni-conf-dir
|
|
mountPath: /etc/cni/net.d
|
|
initContainers:
|
|
- name: install-cni
|
|
image: busybox
|
|
imagePullPolicy: Always
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
- set -e -x;
|
|
if [ ! -f /etc/cni/net.d/10-kuberouter.conflist ]; then
|
|
if [ -f /etc/cni/net.d/*.conf ]; then
|
|
rm -f /etc/cni/net.d/*.conf;
|
|
fi;
|
|
TMP=/etc/cni/net.d/.tmp-kuberouter-cfg;
|
|
cp /etc/kube-router/cni-conf.json ${TMP};
|
|
mv ${TMP} /etc/cni/net.d/10-kuberouter.conflist;
|
|
fi
|
|
volumeMounts:
|
|
- mountPath: /etc/cni/net.d
|
|
name: cni-conf-dir
|
|
- mountPath: /etc/kube-router
|
|
name: kube-router-cfg
|
|
hostNetwork: true
|
|
tolerations:
|
|
- key: CriticalAddonsOnly
|
|
operator: Exists
|
|
- effect: NoSchedule
|
|
key: node-role.kubernetes.io/master
|
|
operator: Exists
|
|
- effect: NoSchedule
|
|
key: node.kubernetes.io/not-ready
|
|
operator: Exists
|
|
volumes:
|
|
- name: lib-modules
|
|
hostPath:
|
|
path: /lib/modules
|
|
- name: cni-conf-dir
|
|
hostPath:
|
|
path: /etc/cni/net.d
|
|
- name: kube-router-cfg
|
|
configMap:
|
|
name: kube-router-cfg
|
|
|