-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
546f8e3
commit c0a3cba
Showing
1 changed file
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
= Breaking changes in 3.21 | ||
:page-sidebar: am_3_x_sidebar | ||
:page-permalink: am/current/am_breaking_changes_3.21.html | ||
:page-folder: am/installation-guide | ||
:page-layout: am | ||
|
||
NOTE: To take advantage of these new features and incorporate these breaking changes, **use the migration guide available link:{{ '/am/current/am_installguide_migration.html' | relative_url }}[here]**. | ||
|
||
== Docker images | ||
|
||
From this version, to be complient with https://www.tenable.com/audits/items/CIS_Docker_v1.3.1_L1_Docker_Linux.audit:bdcea17ac365110218526796ae3095b1[CIS_Docker_v1.3.1_L1] the docker images are now using the user `graviteeio` | ||
This means that if you use the official images and deploy them to Kubernetes, nothing changes. | ||
If you build your own Dockerfile from Gravitee images, you must give the right rights to the modifications you add. | ||
If you deploy in `openshift`, you have to add the following configure: | ||
|
||
```yaml | ||
securityContext: | ||
runAsGroup: 1000 | ||
``` |