[ 
https://issues.apache.org/jira/browse/AIRFLOW-4845?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16873231#comment-16873231
 ] 

ASF subversion and git services commented on AIRFLOW-4845:
----------------------------------------------------------

Commit 2bf4fe3bc8a9c522d1a1df521f8f502e576a7ccc in airflow's branch 
refs/heads/master from George Miller
[ https://gitbox.apache.org/repos/asf?p=airflow.git;h=2bf4fe3 ]

[AIRFLOW-4845] Fix bug where runAsUser 0 doesn't get set in k8s security 
context (#5474)



> Kubernetes Executor Run As User 0 does not work
> -----------------------------------------------
>
>                 Key: AIRFLOW-4845
>                 URL: https://issues.apache.org/jira/browse/AIRFLOW-4845
>             Project: Apache Airflow
>          Issue Type: Bug
>          Components: executors
>    Affects Versions: 1.10.4
>            Reporter: George Miller
>            Assignee: George Miller
>            Priority: Major
>              Labels: pull-request-available
>
> If I set run_as_user in the kubernetes section of airflow.cfg to 0, that does 
> not get applied.  The problem is this code
> ```
>  if self.kube_config.worker_run_as_user:
>      security_context['runAsUser'] = self.kube_config.worker_run_as_user
>  ```
> if self.kube_config.worker_run_as_user is an int 0, that get implied as a 
> False and thus the security context never gets set.  This also happens to 
> fsGroup.  A small change needs to be made to make this check against a "" 
> (empty string) as that's what it's defaulted to in the default airflow config 
> file.
>  
> Here is my pr [https://github.com/apache/airflow/pull/5474]



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to