Minikube windows 10 sisteminde çalışacak python komut dosyası için Dockerfile oluşturuyorum benim Dockerfile
Aşağıdaki komutu kullanarak liman işçisini oluşturma
docker build -t python-helloworld .
ve minikube liman işçisi iblisine
docker save python-helloworld | (eval $(minikube docker-env) && docker load)
Docker Dosyası
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"]
pythoncronjob.yml dosyası (cron iş dosyası)
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
Bu Kubernetes işini çalıştırma komutu aşağıdadır
kubectl create -f pythoncronjob.yml
Ancak aşağıdaki hata işini almak titizlikle çalışmıyor ancak Dockerfile'ı tek başına çalıştırdığında iyi çalışıyor
standard_init_linux.go: 211: exec kullanıcı işlemi "exec format hatası" na neden oldu