Hi,
I am testing kubernetes.
My Dockerfile:
FROM continuumio/anaconda3:latest
WORKDIR /app
CMD [“echo”, “Hello Doğa”]
apiVersion: v1
kind: Pod
metadata:
name: test-pod
spec:
containers:
- image: atemiz/bokeh2
name: test-container
volumeMounts:- mountPath: /app
name: app-volume
volumes:
- mountPath: /app
- name: app-volume
emptyDir: {}
kubectl get pod test-pod
NAME READY STATUS RESTARTS AGE
test-pod 0/1 CrashLoopBackOff 9 (42s ago) 22m
Can you tell me what the potential causes might be ?
What am I doing wrong
PS : Docker run … is OK
regards