Estou construindo o Dockerfile para script python que será executado no sistema minikube windows 10 abaixo é o meu Dockerfile
Construindo a janela de encaixe usando o comando abaixo
docker build -t python-helloworld .
e carregando isso no minikube docker demon
docker save python-helloworld | (eval $(minikube docker-env) && docker load)
Arquivo Docker
FROM python:3.7-alpine
#add user group and ass user to that group
RUN addgroup -S appgroup && adduser -S appuser -G appgroup
#creates work dir
WORKDIR /app
#copy python script to the container folder app
COPY helloworld.py /app/helloworld.py
#user is appuser
USER appuser
ENTRYPOINT ["python", "/app/helloworld.py"]
Arquivo pythoncronjob.yml (arquivo de tarefa cron)
apiVersion: batch/v1beta1
kind: CronJob
metadata:
name: python-helloworld
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
backoffLimit: 5
template:
spec:
containers:
- name: python-helloworld
image: python-helloworld
imagePullPolicy: IfNotPresent
command: [/app/helloworld.py]
restartPolicy: OnFailure
Abaixo está o comando para executar este trabalho do Kubernetes
kubectl create -f pythoncronjob.yml
Mas obter o trabalho de erro abaixo não está sendo executado com scuessfully, mas quando você executou o Dockerfile sozinho, seu trabalho está bom
standard_init_linux.go: 211: o processo do usuário exec causou "erro de formato exec"