mirror of
https://github.com/containers/podman.git
synced 2025-10-16 18:53:19 +08:00
docs: mention the podman-kube template
Mention the template in the docs for play-kube and generate-systemd. Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
@ -14,6 +14,17 @@ Generating unit files for a pod requires the pod to be created with an infra con
|
||||
|
||||
_Note: If you use this command with the remote client, including Mac and Windows (excluding WSL2) machines, you would still have to place the generated units on the remote system. Moreover, please make sure that the XDG_RUNTIME_DIR environment variable is set. If unset, you may set it via `export XDG_RUNTIME_DIR=/run/user/$(id -u)`._
|
||||
|
||||
### Kubernetes Integration
|
||||
|
||||
A Kubernetes YAML can be executed in systemd via the `podman-kube@.service` systemd template. The template's argument is the path to the YAML file. Given a `workload.yaml` file in the home directory, it can be executed as follows:
|
||||
|
||||
```
|
||||
$ escaped=$(systemd-escape ~/sysadmin.yaml)
|
||||
$ systemctl --user start podman-kube@$escaped.service
|
||||
$ systemctl --user is-active podman-kube@$escaped.service
|
||||
active
|
||||
```
|
||||
|
||||
## OPTIONS
|
||||
|
||||
#### **--after**=*dependency_name*
|
||||
|
@ -103,6 +103,19 @@ spec:
|
||||
|
||||
and as a result environment variable `FOO` will be set to `bar` for container `container-1`.
|
||||
|
||||
### Systemd Integration
|
||||
|
||||
A Kubernetes YAML can be executed in systemd via the `podman-kube@.service` systemd template. The template's argument is the path to the YAML file. Given a `workload.yaml` file in the home directory, it can be executed as follows:
|
||||
|
||||
```
|
||||
$ escaped=$(systemd-escape ~/sysadmin.yaml)
|
||||
$ systemctl --user start podman-kube@$escaped.service
|
||||
$ systemctl --user is-active podman-kube@$escaped.service
|
||||
active
|
||||
```
|
||||
|
||||
Note that the path to the YAML file must be escaped via `systemd-escape`.
|
||||
|
||||
## OPTIONS
|
||||
|
||||
#### **--annotation**=*key=value*
|
||||
|
Reference in New Issue
Block a user