更新时间:2021-12-25 GMT+08:00
OVS Kubernetes部署yaml文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | # Configmap 'k-vswitch' is the only resource in this file that requires
# updates based on your cluster configuration.
#
# clusterCIDR should be updated to the same CIDR configured on your
# Kubernetes components
# serviceCIDR should be updated to the same CIDR configured on your
# Kubernetes components
# overlayType should be updated based on the overlay type you want.
# Currently 'vxlan' and 'gre' are supported. 'gre' is recommended
# but some cloud providers may not allow gre traffic over your network.
---
apiVersion: v1
kind: ConfigMap
metadata:
name: k-vswitch
namespace: kube-system
data:
clusterCIDR: "<clusterCIDR>" # change this depending on your cluster, e.g. "100.96.0.0/11"
serviceCIDR: "<serviceCIDR>" # change this depending on your cluster, e.g. "100.64.0.0/13"
overlayType: "<overlayType>" # change this depending on your cluster, can be "vxlan" or "gre"
---
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: vswitchconfigs.kvswitch.io
spec:
group: kvswitch.io
version: v1alpha1
names:
kind: VSwitchConfig
plural: vswitchconfigs
scope: Cluster
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: k-vswitch
namespace: kube-system
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: k-vswitch
rules:
- apiGroups:
- ""
resources:
- services
- nodes
- endpoints
- pods
- namespaces
verbs:
- list
- get
- watch
- apiGroups:
- "networking.k8s.io"
resources:
- "networkpolicies"
verbs:
- get
- list
- watch
- apiGroups:
- "kvswitch.io"
resources:
- vswitchconfigs
verbs:
- list
- get
- watch
- create
- update
- patch
- delete
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: k-vswitch
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: k-vswitch
subjects:
- kind: ServiceAccount
name: k-vswitch
namespace: kube-system
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: k-vswitch-controller
namespace: kube-system
spec:
replicas: 1
updateStrategy:
type: RollingUpdate
serviceName: k-vswitch-controller
selector:
matchLabels:
k8s-app: k-vswitch-controller
template:
metadata:
labels:
k8s-app: k-vswitch-controller
spec:
tolerations:
- key: "node-role.kubernetes.io/master"
effect: NoSchedule
hostNetwork: true
serviceAccountName: k-vswitch
containers:
- name: k-vswitch-controller
image: kvswitch/k-vswitch:latest
imagePullPolicy: IfNotPresent
command:
- "/bin/k-vswitch-controller"
- "--cluster-cidr=$(K_VSWITCH_CLUSTER_CIDR)"
- "--service-cidr=$(K_VSWITCH_SERVICE_CIDR)"
- "--overlay-type=$(K_VSWITCH_OVERLAY_TYPE)"
env:
- name: K_VSWITCH_CLUSTER_CIDR
valueFrom:
configMapKeyRef:
name: k-vswitch
key: clusterCIDR
- name: K_VSWITCH_SERVICE_CIDR
valueFrom:
configMapKeyRef:
name: k-vswitch
key: serviceCIDR
- name: K_VSWITCH_OVERLAY_TYPE
valueFrom:
configMapKeyRef:
name: k-vswitch
key: overlayType
---
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: k-vswitchd
namespace: kube-system
labels:
k8s-app: k-vswitchd
spec:
selector:
matchLabels:
k8s-app: k-vswitchd
template:
metadata:
labels:
k8s-app: k-vswitchd
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
spec:
serviceAccountName: k-vswitch
containers:
- name: k-vswitchd
image: kvswitch/k-vswitch:latest
imagePullPolicy: IfNotPresent
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
securityContext:
privileged: true
volumeMounts:
- mountPath: /etc/cni/net.d
name: cni-conf
- mountPath: /etc/openvswitch
name: ovs-etc
- mountPath: /var/run/openvswitch
name: ovs-run
- mountPath: /var/log/openvswitch
name: ovs-log
- mountPath: /lib/modules
name: lib-modules
initContainers:
- name: install-cni
image: kvswitch/k-vswitch:latest
imagePullPolicy: IfNotPresent
command:
- /bin/sh
- -c
- |
set -e -x;
cp /bin/k-vswitch-cni /opt/cni/bin/
volumeMounts:
- mountPath: /opt/cni/bin
name: cni-bin-dir
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: cni-bin-dir
hostPath:
path: /opt/cni/bin
- name: cni-conf
hostPath:
path: /etc/cni/net.d
- name: ovs-run
hostPath:
path: /var/run/openvswitch
- name: ovs-etc
hostPath:
path: /etc/openvswitch
- name: ovs-log
hostPath:
path: /var/log/openvswitch
- name: lib-modules
hostPath:
path: /lib/modules
|
父主题: 参考
