All checks were successful
continuous-integration/drone/push Build is passing
147 lines
3.9 KiB
YAML
147 lines
3.9 KiB
YAML
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: weave-net
|
|
annotations:
|
|
cloud.weave.works/launcher-info: |-
|
|
{
|
|
"original-request": {
|
|
"url": "/k8s/v1.16/net.yaml",
|
|
"date": "Fri Apr 09 2021 10:33:15 GMT+0000 (UTC)"
|
|
},
|
|
"email-address": "support@weave.works"
|
|
}
|
|
labels:
|
|
name: weave-net
|
|
namespace: kube-system
|
|
spec:
|
|
minReadySeconds: 5
|
|
selector:
|
|
matchLabels:
|
|
name: weave-net
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: weave-net
|
|
spec:
|
|
containers:
|
|
- name: weave
|
|
command:
|
|
- /home/weave/launch.sh
|
|
env:
|
|
- name: WEAVE_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: weave-passwd
|
|
key: weave-passwd
|
|
- name: IPTABLES_BACKEND
|
|
value: nft
|
|
- name: WEAVE_MTU
|
|
value: "1376"
|
|
- name: IPALLOC_RANGE
|
|
value: 10.32.0.0/12
|
|
- name: HOSTNAME
|
|
valueFrom:
|
|
fieldRef:
|
|
apiVersion: v1
|
|
fieldPath: spec.nodeName
|
|
- name: INIT_CONTAINER
|
|
value: 'true'
|
|
image: 'docker.io/weaveworks/weave-kube:2.8.1'
|
|
readinessProbe:
|
|
httpGet:
|
|
host: 127.0.0.1
|
|
path: /status
|
|
port: 6784
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 100Mi
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: weavedb
|
|
mountPath: /weavedb
|
|
- name: dbus
|
|
mountPath: /host/var/lib/dbus
|
|
- name: machine-id
|
|
mountPath: /host/etc/machine-id
|
|
readOnly: true
|
|
- name: xtables-lock
|
|
mountPath: /run/xtables.lock
|
|
- name: weave-npc
|
|
env:
|
|
- name: HOSTNAME
|
|
valueFrom:
|
|
fieldRef:
|
|
apiVersion: v1
|
|
fieldPath: spec.nodeName
|
|
image: 'docker.io/weaveworks/weave-npc:2.8.1'
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 100Mi
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: xtables-lock
|
|
mountPath: /run/xtables.lock
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
hostNetwork: true
|
|
initContainers:
|
|
- name: weave-init
|
|
command:
|
|
- /home/weave/init.sh
|
|
image: 'docker.io/weaveworks/weave-kube:2.8.1'
|
|
securityContext:
|
|
privileged: true
|
|
volumeMounts:
|
|
- name: cni-bin
|
|
mountPath: /host/opt
|
|
- name: cni-bin2
|
|
mountPath: /host/home
|
|
- name: cni-conf
|
|
mountPath: /host/etc
|
|
- name: lib-modules
|
|
mountPath: /lib/modules
|
|
- name: xtables-lock
|
|
mountPath: /run/xtables.lock
|
|
priorityClassName: system-node-critical
|
|
restartPolicy: Always
|
|
securityContext:
|
|
seLinuxOptions: {}
|
|
serviceAccountName: weave-net
|
|
tolerations:
|
|
- effect: NoSchedule
|
|
operator: Exists
|
|
- effect: NoExecute
|
|
operator: Exists
|
|
volumes:
|
|
- name: weavedb
|
|
hostPath:
|
|
path: /var/lib/weave
|
|
- name: cni-bin
|
|
hostPath:
|
|
path: /opt
|
|
- name: cni-bin2
|
|
hostPath:
|
|
path: /home
|
|
- name: cni-conf
|
|
hostPath:
|
|
path: /etc
|
|
- name: dbus
|
|
hostPath:
|
|
path: /var/lib/dbus
|
|
- name: lib-modules
|
|
hostPath:
|
|
path: /lib/modules
|
|
- name: machine-id
|
|
hostPath:
|
|
path: /etc/machine-id
|
|
type: FileOrCreate
|
|
- name: xtables-lock
|
|
hostPath:
|
|
path: /run/xtables.lock
|
|
type: FileOrCreate
|
|
updateStrategy:
|
|
type: RollingUpdate
|