forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes default group of Airflow user. (apache#14944)
The production image did not have root group set as default for the airflow user. This was not a big problem unless you extended the image - in which case you had to change the group manually when copying the images in order to keep the image OpenShift compatible (i.e. runnable with any user and root group). This PR fixes it by changing default group of airflow user to root, which also works when you extend the image. ``` Connected. airflow@53f70b1e3675:/opt/airflow$ ls dags logs airflow@53f70b1e3675:/opt/airflow$ cd dags/ airflow@53f70b1e3675:/opt/airflow/dags$ ls -l total 4 -rw-r--r-- 1 airflow root 1648 Mar 22 23:16 test_dag.py airflow@53f70b1e3675:/opt/airflow/dags$ ```
- Loading branch information
Showing
3 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters