Estoy construyendo el Dockerfile para el script python que se ejecutará en el sistema minikube windows 10 a continuación es mi Dockerfile
Construyendo la ventana acoplable usando el siguiente comando
docker build -t python-helloworld .
y cargando eso en minikube docker demon
docker save python-helloworld | (eval $(minikube docker-env) && docker load)
Archivo 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"]
archivo pythoncronjob.yml (archivo de trabajo 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
A continuación se muestra el comando para ejecutar este trabajo de Kubernetes
kubectl create -f pythoncronjob.yml
Pero obtener el siguiente trabajo de error no se ejecuta de manera engañosa, pero cuando ejecutó el Dockerfile solo funciona bien
standard_init_linux.go: 211: el proceso de usuario exec provocó un "error de formato exec"