Skip to content

Commit

Permalink
Fix the documentation regarding the uid and gid mapping in the docs. …
Browse files Browse the repository at this point in the history
…(Issue #7674, PR #7814)

# Description

I seems I forgot to correctly update the length fields.

Part of #7674

# Self Check:

- [x] Attached issue to pull request
- [x] Changelog entry
- [ ] ~~Type annotations are present~~
- [ ] ~~Code is clear and sufficiently documented~~
- [ ] ~~No (preventable) type errors (check using make mypy or make mypy-diff)~~
- [ ] ~~Sufficient test cases (reproduces the bug/tests the requested feature)~~
- [ ] ~~Correct, in line with design~~
- [x] End user documentation is included or an issue is created for end-user documentation (add ref to issue here: )
- [ ] ~~If this PR fixes a race condition in the test suite, also push the fix to the relevant stable branche(s) (see [test-fixes](https://internal.inmanta.com/development/core/tasks/build-master.html#test-fixes) for more info)~~
  • Loading branch information
arnaudsjs authored and inmantaci committed Jul 3, 2024
1 parent f15d166 commit 30df9cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions changelogs/unreleased/fix-uid-and-gid-mapping-in-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
description: Fix the documentation regarding the uid and gid mapping in the docs.
issue-nr: 7674
issue-repo: inmanta-core
change-type: patch
destination-branches: [master, iso7, iso6]
16 changes: 8 additions & 8 deletions docs/install/2-install-server-with-podman-and-systemd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -355,10 +355,10 @@ Here is a systemd unit file that can be used to deploy the server on your machin
--publish=127.0.0.1:8888:8888 \
--uidmap=997:0:1 \
--uidmap=0:1:997 \
--uidmap=998:998:64543 \
--uidmap=998:998:64539 \
--gidmap=995:0:1 \
--gidmap=0:1:995 \
--gidmap=996:996:64543 \
--gidmap=996:996:64541 \
--name=inmanta-orchestrator-server \
--volume=%E/inmanta/inmanta.cfg:/etc/inmanta/inmanta.cfg:z \
--volume=%h/.local/share/inmanta-orchestrator-server/logs:/var/log/inmanta:z \
Expand Down Expand Up @@ -404,10 +404,10 @@ Here is a systemd unit file that can be used to deploy the server on your machin
--publish=127.0.0.1:8888:8888 \
--uidmap=997:0:1 \
--uidmap=0:1:997 \
--uidmap=998:998:64543 \
--uidmap=998:998:64539 \
--gidmap=995:0:1 \
--gidmap=0:1:995 \
--gidmap=996:996:64543 \
--gidmap=996:996:64541 \
--name=inmanta-orchestrator-server \
--volume=%E/inmanta/inmanta.cfg:/etc/inmanta/inmanta.cfg:z \
--volume=%E/inmanta/license/com.inmanta.license:/etc/inmanta/license/com.inmanta.license:z \
Expand Down Expand Up @@ -463,10 +463,10 @@ Here is a systemd unit file that can be used to deploy the server on your machin
--publish=127.0.0.1:8888:8888 \
--uidmap=997:0:1 \
--uidmap=0:1:997 \
--uidmap=998:998:64543 \
--uidmap=998:998:64539 \
--gidmap=995:0:1 \
--gidmap=0:1:995 \
--gidmap=996:996:64543 \
--gidmap=996:996:64541 \
--name=inmanta-orchestrator-server \
--volume=/etc/inmanta/inmanta.cfg:/etc/inmanta/inmanta.cfg:z \
--volume=/var/log/inmanta:/var/log/inmanta:z \
Expand Down Expand Up @@ -514,10 +514,10 @@ Here is a systemd unit file that can be used to deploy the server on your machin
--publish=127.0.0.1:8888:8888 \
--uidmap=997:0:1 \
--uidmap=0:1:997 \
--uidmap=998:998:64543 \
--uidmap=998:998:64539 \
--gidmap=995:0:1 \
--gidmap=0:1:995 \
--gidmap=996:996:64543 \
--gidmap=996:996:64541 \
--name=inmanta-orchestrator-server \
--volume=/etc/inmanta/inmanta.cfg:/etc/inmanta/inmanta.cfg:z \
--volume=/etc/inmanta/license/com.inmanta.license:/etc/inmanta/license/com.inmanta.license:z \
Expand Down

0 comments on commit 30df9cc

Please sign in to comment.