-
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.
RHOAIENG-16076: tests(gha): change to using rootful podman, so that w…
…e can share containers/storage with cri-o later (#782)
- Loading branch information
Showing
7 changed files
with
94 additions
and
25 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 was deleted.
Oops, something went wrong.
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,20 @@ | ||
# https://docs.podman.io/en/latest/markdown/podman-system-service.1.html | ||
# cat /usr/lib/systemd/system/podman.socket | ||
|
||
[Unit] | ||
Description=Podman API Service | ||
Requires=podman.socket | ||
After=podman.socket | ||
Documentation=man:podman-system-service(1) | ||
StartLimitIntervalSec=0 | ||
|
||
[Service] | ||
Delegate=true | ||
Type=exec | ||
KillMode=process | ||
Environment="PATH=/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin" | ||
WorkingDirectory=/home/linuxbrew/.linuxbrew | ||
ExecStart=/home/linuxbrew/.linuxbrew/opt/podman/bin/podman --log-level=info system service | ||
|
||
[Install] | ||
WantedBy=default.target |
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,12 @@ | ||
# cat /usr/lib/systemd/system/podman.socket | ||
|
||
[Unit] | ||
Description=Podman API Socket | ||
Documentation=man:podman-system-service(1) | ||
|
||
[Socket] | ||
ListenStream=%t/podman/podman.sock | ||
SocketMode=0666 | ||
|
||
[Install] | ||
WantedBy=sockets.target |
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,6 @@ | ||
# https://github.com/containers/image/blob/main/docs/containers-registries.conf.5.md | ||
|
||
# prevent this kyverno error | ||
# Failed to pull image "bitnami/kubectl:1.26.4": reading manifest 1.26.4 in quay.io/bitnami/kubectl: unauthorized: access to the requested resource is not authorized | ||
unqualified-search-registries = [ "docker.io" ] | ||
short-name-mode = "enforcing" |
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