Skip to content

Commit

Permalink
Add note in Updating.md about the change in run_as_user default (ap…
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil authored and scrambldchannel committed Jul 17, 2020
1 parent cf309dc commit c96c6ca
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions UPDATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -1476,6 +1476,28 @@ auth_backend = airflow.api.auth.backend.default
Since XCom values can contain pickled data, we would no longer allow adding or
changing XCom values from the UI.

### Default for `run_as_user` configured has been changed to 50000 from 0

The UID to run the first process of the Worker PODs when using has been changed to `50000`
from the previous default of `0`. The previous default was an empty string but the code used `0` if it was
empty string.

**Before**:

```ini
[kubernetes]
run_as_user =
```

**After**:

```ini
[kubernetes]
run_as_user = 50000
```

This is done to avoid running the container as `root` user.

## Airflow 1.10.10

### Setting Empty string to a Airflow Variable will return an empty string
Expand Down

0 comments on commit c96c6ca

Please sign in to comment.