-
Notifications
You must be signed in to change notification settings - Fork 133
Closed
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image
Description
I deployed a kubernetes image using the latest version of busybox image.
After the pod was successfully deployed I tried to run
kubectl exec busybox nslookup kubernetes.default
The nslookup command no longer works.
shenoyk-m01:image-pipeline shenoyk$ kubectl exec busybox nslookup kubernetes.default
Server: 10.0.0.10
Address: 10.0.0.10:53
** server can't find kubernetes.default: NXDOMAIN
*** Can't find kubernetes.default: No answer
The same command works when specifying busybox:1.28 version for the image. Nslookup started failing with the latest version
busybox.yaml is below.
apiVersion: v1
kind: Pod
metadata:
name: busybox
namespace: default
spec:
containers:
- image: busybox
command:- sleep
- "3600"
imagePullPolicy: Always
name: busybox
restartPolicy: Always
rewiko, danbreed, swibrow, tokiwinter, Kevin-De-Koninck and 15 more
Metadata
Metadata
Assignees
Labels
questionUsability question, not directly related to an error with the imageUsability question, not directly related to an error with the image