Fedora 42
Sponsored Link

Podman : Systemd यूनिट फ़ाइल जनरेट करें2025/04/25

 

Systemd यूनिट फ़ाइल जेनरेट करना और कंटेनरों के लिए ऑटो-स्टार्टिंग सेट करना संभव है।

[1] Quadlet का उपयोग करके कंटेनर सेवा कॉन्फ़िगर करें।
[root@dlp ~]#
podman images

REPOSITORY                         TAG               IMAGE ID      CREATED         SIZE
localhost/podman-pause             5.4.2-1743552000  44beb5bc0a3a  30 minutes ago  776 kB
srv.world/iproute                  latest            aa9549af2c42  2 hours ago     258 MB
docker.io/library/root-web         latest            6b8099ee8b9d  3 hours ago     325 MB
srv.world/fedora-nginx             latest            ad26e76247bd  3 hours ago     325 MB
srv.world/fedora-httpd             latest            512d39041a55  3 hours ago     328 MB
registry.fedoraproject.org/fedora  latest            e5bf03515e92  25 hours ago    166 MB
docker.io/library/mariadb          latest            9f3d79eba61e  2 months ago    334 MB

# फ़ाइल का नाम ⇒ (कोई भी नाम).container

[root@dlp ~]#
vi /etc/containers/systemd/fedora-nginx.container
[Unit]
Description=Nginx container
After=local-fs.target

[Container]
# कोई भी नाम
ContainerName=fedora-nginx
# उपयोग की जाने वाली कंटेनर छवि
Image=srv.world/fedora-nginx
# पत्तन
PublishPort=80:80

[Service]
Restart=always

[Install]
WantedBy=multi-user.target default.target

[root@dlp ~]#
systemctl daemon-reload

[root@dlp ~]#
systemctl start fedora-nginx.service
[2] Quadlet का उपयोग करके पॉड सेवा कॉन्फ़िगर करें।
[root@dlp ~]#
podman images

REPOSITORY                         TAG               IMAGE ID      CREATED         SIZE
localhost/podman-pause             5.4.2-1743552000  44beb5bc0a3a  31 minutes ago  776 kB
srv.world/iproute                  latest            aa9549af2c42  2 hours ago     258 MB
docker.io/library/root-web         latest            6b8099ee8b9d  3 hours ago     325 MB
srv.world/fedora-nginx             latest            ad26e76247bd  3 hours ago     325 MB
srv.world/fedora-httpd             latest            512d39041a55  3 hours ago     328 MB
registry.fedoraproject.org/fedora  latest            e5bf03515e92  25 hours ago    166 MB
docker.io/library/mariadb          latest            9f3d79eba61e  2 months ago    334 MB

# पॉड कॉन्फ़िगरेशन फ़ाइल बनाएं
# प्रारूप Kubernetes के समान है

[root@dlp ~]#
vi /etc/containers/systemd/nginx-pod.yml
apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-pod
  labels:
    name: nginx-pod
spec:
  replicas: 1
  selector:
    matchLabels:
      app: nginx-pod
  template:
    metadata:
      labels:
        app: nginx-pod
    spec:
      containers:
      - name: nginx-pod
        image: fedora-nginx
        ports:
          - name: web
            containerPort: 80

# फ़ाइल का नाम ⇒ (कोई भी नाम).kube

[root@dlp ~]#
vi /etc/containers/systemd/nginx-pod.kube
[Unit]
Description=Web service pod
After=local-fs.target

[Kube]
Yaml=/etc/containers/systemd/nginx-pod.yml
PublishPort=80:80

[Service]
Restart=always

[Install]
WantedBy=multi-user.target default.target

[root@dlp ~]#
systemctl daemon-reload

[root@dlp ~]#
systemctl start nginx-pod.service
मिलान सामग्री