Skip to content

Instantly share code, notes, and snippets.

@IvanCl4udio
Last active June 5, 2025 03:06
Show Gist options
  • Select an option

  • Save IvanCl4udio/6a1c4bb4a7bc588e04470956530e3816 to your computer and use it in GitHub Desktop.

Select an option

Save IvanCl4udio/6a1c4bb4a7bc588e04470956530e3816 to your computer and use it in GitHub Desktop.

Revisions

  1. IvanCl4udio revised this gist Oct 2, 2023. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions Howto.md
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,6 @@
    ### How install CRI-O on Ubuntu 22.04 LTS ###


    ```bash
    OS=Debian_11

  2. IvanCl4udio revised this gist Sep 10, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Howto.md
    Original file line number Diff line number Diff line change
    @@ -25,6 +25,6 @@ systemctl status crio
    sudo apt install cri-tools

    sudo crictl pull hello-world
    sudo crictl pull busybox

    sudo crictl images
    ```
  3. IvanCl4udio revised this gist Sep 10, 2022. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions Howto.md
    Original file line number Diff line number Diff line change
    @@ -7,6 +7,10 @@ echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers

    echo "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$CRIO_VERSION/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$CRIO_VERSION.list

    curl -L https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:$CRIO_VERSION/$OS/Release.key | sudo apt-key add -

    curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/Release.key | sudo apt-key add -

    sudo apt update
    sudo apt upgrade

  4. IvanCl4udio revised this gist Sep 10, 2022. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Howto.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    ```bash
    OS=Debian_11

    CRIO_VERSION=1.25
    CRIO_VERSION=1.23

    echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list

  5. IvanCl4udio revised this gist Sep 10, 2022. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions Howto.md
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,10 @@
    ```bash
    OS=Debian_11

    CRIO_VERSION=1.25

    echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list

    echo "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$CRIO_VERSION/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$CRIO_VERSION.list

    sudo apt update
    @@ -20,3 +23,4 @@ sudo apt install cri-tools
    sudo crictl pull hello-world
    sudo crictl pull busybox
    sudo crictl images
    ```
  6. IvanCl4udio created this gist Sep 10, 2022.
    22 changes: 22 additions & 0 deletions Howto.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    OS=Debian_11
    CRIO_VERSION=1.25

    echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list
    echo "deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$CRIO_VERSION/$OS/ /"|sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$CRIO_VERSION.list

    sudo apt update
    sudo apt upgrade

    sudo apt install cri-o cri-o-runc

    sudo systemctl start crio.service

    sudo systemctl enable crio.service

    systemctl status crio

    sudo apt install cri-tools

    sudo crictl pull hello-world
    sudo crictl pull busybox
    sudo crictl images