* Use the VKUBELET API for fetching the pods during testing, which makes it easier to run testing without wiring up an entire cluster * Runningpods does not require each provider to implement the optional stats interface for testing.
41 lines
891 B
YAML
41 lines
891 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: vkubelet-mock-0
|
|
spec:
|
|
containers:
|
|
- name: vkubelet-mock-0
|
|
image: virtual-kubelet
|
|
# "IfNotPresent" is used to prevent Minikube from trying to pull from the registry (and failing) in the first place.
|
|
imagePullPolicy: IfNotPresent
|
|
args:
|
|
- /virtual-kubelet
|
|
- --nodename
|
|
- vkubelet-mock-0
|
|
- --provider
|
|
- mock
|
|
- --provider-config
|
|
- /vkubelet-mock-0-cfg.json
|
|
- --startup-timeout
|
|
- 10s
|
|
- --klog.v
|
|
- "2"
|
|
- --klog.logtostderr
|
|
- --log-level
|
|
- debug
|
|
env:
|
|
- name: KUBELET_PORT
|
|
value: "10250"
|
|
- name: VKUBELET_POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
ports:
|
|
- name: metrics
|
|
containerPort: 10255
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /stats/summary
|
|
port: metrics
|
|
serviceAccountName: virtual-kubelet
|