mirror of
https://github.com/apple/container.git
synced 2026-08-24 02:24:19 -05:00
- closes #2043 - introduces the k8s plugin, allowing users to make single node clusters with the kind base image - other functionality is included as well such as creation, deletion, and loading custom images
136 lines
3.0 KiB
YAML
136 lines
3.0 KiB
YAML
# kindnetd networking manifest
|
|
#
|
|
# Pinned copy of kind's embedded default CNI manifest, transcribed verbatim
|
|
# from kubernetes-sigs/kind pkg/build/nodeimage/const_cni.go at tag v0.29.0:
|
|
# https://github.com/kubernetes-sigs/kind/blob/v0.29.0/pkg/build/nodeimage/const_cni.go
|
|
#
|
|
# The POD_SUBNET value must stay in sync with podSubnet in K8sHelper.
|
|
#
|
|
# kindnetd image pinned by the same kind release: docker.io/kindest/kindnetd:v20260528-9350166c
|
|
---
|
|
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: kindnet
|
|
rules:
|
|
- apiGroups:
|
|
- policy
|
|
resources:
|
|
- podsecuritypolicies
|
|
verbs:
|
|
- use
|
|
resourceNames:
|
|
- kindnet
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- nodes
|
|
- pods
|
|
- namespaces
|
|
verbs:
|
|
- list
|
|
- watch
|
|
- apiGroups:
|
|
- "networking.k8s.io"
|
|
resources:
|
|
- networkpolicies
|
|
verbs:
|
|
- list
|
|
- watch
|
|
---
|
|
kind: ClusterRoleBinding
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: kindnet
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: kindnet
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: kindnet
|
|
namespace: kube-system
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: kindnet
|
|
namespace: kube-system
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: DaemonSet
|
|
metadata:
|
|
name: kindnet
|
|
namespace: kube-system
|
|
labels:
|
|
tier: node
|
|
app: kindnet
|
|
k8s-app: kindnet
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: kindnet
|
|
template:
|
|
metadata:
|
|
labels:
|
|
tier: node
|
|
app: kindnet
|
|
k8s-app: kindnet
|
|
spec:
|
|
hostNetwork: true
|
|
nodeSelector:
|
|
kubernetes.io/os: linux
|
|
tolerations:
|
|
- operator: Exists
|
|
serviceAccountName: kindnet
|
|
containers:
|
|
- name: kindnet-cni
|
|
image: docker.io/kindest/kindnetd:v20260528-9350166c
|
|
env:
|
|
- name: HOST_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.hostIP
|
|
- name: POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
- name: POD_SUBNET
|
|
value: "10.244.0.0/16"
|
|
volumeMounts:
|
|
- name: cni-cfg
|
|
mountPath: /etc/cni/net.d
|
|
- name: xtables-lock
|
|
mountPath: /run/xtables.lock
|
|
readOnly: false
|
|
- name: lib-modules
|
|
mountPath: /lib/modules
|
|
readOnly: true
|
|
- name: nri-plugin
|
|
mountPath: /var/run/nri
|
|
resources:
|
|
requests:
|
|
cpu: "100m"
|
|
memory: "50Mi"
|
|
limits:
|
|
cpu: "100m"
|
|
memory: "50Mi"
|
|
securityContext:
|
|
privileged: false
|
|
capabilities:
|
|
add: ["NET_RAW", "NET_ADMIN"]
|
|
volumes:
|
|
- name: cni-cfg
|
|
hostPath:
|
|
path: /etc/cni/net.d
|
|
- name: xtables-lock
|
|
hostPath:
|
|
path: /run/xtables.lock
|
|
type: FileOrCreate
|
|
- name: lib-modules
|
|
hostPath:
|
|
path: /lib/modules
|
|
- name: nri-plugin
|
|
hostPath:
|
|
path: /var/run/nri
|