Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run cron as non root user #381

Open
ankur1000 opened this issue Feb 9, 2018 · 9 comments
Open

Run cron as non root user #381

ankur1000 opened this issue Feb 9, 2018 · 9 comments

Comments

@ankur1000
Copy link

I want to create a cronjob as non-root user and without sudo. How do I create a cronjob for the same?

@inl-pd-autotest
Copy link

I have a non-privileged user nginx.
On docker build stage I put a crontab file to /etc/crontabs/nginx.

Remember: crond should be started as root at all times.

@amirmasud
Copy link

amirmasud commented Aug 11, 2018

Remember: crond should be started as root at all times.

@inl-pd-autotest
it's really bad news because it prevents the usage on openshift where containers start with non-root random users.

Is there any workaround to do so on openshift or we should find crond alternatives for inside container cronjobs ?

@AleksanderGrzybowski
Copy link

AleksanderGrzybowski commented Sep 18, 2018

I have the same problem on OpenShift, cron daemon dies with "seteuid: Operation not permitted" (probably because file systems are mounted with nosuid option) and the provider I use will not allow root containers to run. Is there any workaround to run cron daemon as non-root user?

@sachingupta771
Copy link

Hello team,

i am also facing same issue, please provide something or some workaround to be used until alpine community includes it next updates

@AleksanderGrzybowski
Copy link

For the record, on OpenShift I ended up with replacing our old cron-powered scripts with Kubernetes CronJobs and rewrote some parts of initialization script code to work when invoked via CronJob. It works okay-ish, the downsides are mainly unpredictability in schedule time (needs to create pod, download image on random node etc. may take a minute or two) and the fact that logs from jobs aren't in one place without some clever aggregation. Aside of that, it's better :)

@krallin
Copy link

krallin commented Feb 14, 2019

You might want to take a look at https://github.com/aptible/supercronic — it should be a plug-and-play replacement for cron (just point it at your crontab), but it plays a bit nicer with containers (it won't try to change users, and won't daemonize).

Disclaimer: I'm a contributor to Supercronic :)

@inter169
Copy link

inter169 commented Mar 15, 2019

Just coded the fix for alpine (busybox) linux, published the patched alpine dockers, as below:
geekidea/alpine-cron:3.7
geekidea/alpine-cron:3.8
geekidea/alpine-cron:3.9

see more: https://github.com/inter169/systs/blob/master/alpine/crond/README.md

@erseco
Copy link

erseco commented Apr 30, 2020

As @inter169 says you need to allow the CAP_SETGID to run crond as user, this can be a security issue if is set to all busybox binary but you can use dcron package instead of busybox's builtin crond and set the CAP_SETGID just on that program. Here is what you need to add for Alpine, using nobody as running user

USER root
# crond needs root, so install dcron and cap package and set the capabilities 
# on dcron binary https://github.com/inter169/systs/blob/master/alpine/crond/README.md
RUN apk add --no-cache dcron libcap && \
    chown nobody:nobody /usr/sbin/crond && \
    setcap cap_setgid=ep /usr/sbin/crond

USER nobody

@doug1n
Copy link

doug1n commented May 14, 2021

I'm using https://github.com/gjcarneiro/yacron as an alternative

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants