{"id":16777294,"url":"https://github.com/githubixx/ansible-role-runc","last_synced_at":"2025-08-30T12:09:39.838Z","repository":{"id":44655888,"uuid":"404875809","full_name":"githubixx/ansible-role-runc","owner":"githubixx","description":"Ansible role to install runc","archived":false,"fork":false,"pushed_at":"2025-01-15T21:13:19.000Z","size":41,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-27T15:06:33.238Z","etag":null,"topics":["ansible","ansible-role","ansible-roles","container","containerd","containers","cri","docker","k8s","kubernetes","oci","runc","runtime"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/githubixx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSES/GPL-3.0-or-later.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-09T21:33:31.000Z","updated_at":"2025-01-15T21:12:57.000Z","dependencies_parsed_at":"2023-11-14T20:27:50.351Z","dependency_job_id":"0dec5bbd-de39-46c8-a90b-70a7785fc7c7","html_url":"https://github.com/githubixx/ansible-role-runc","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/githubixx/ansible-role-runc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/githubixx%2Fansible-role-runc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/githubixx%2Fansible-role-runc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/githubixx%2Fansible-role-runc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/githubixx%2Fansible-role-runc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/githubixx","download_url":"https://codeload.github.com/githubixx/ansible-role-runc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/githubixx%2Fansible-role-runc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272846173,"owners_count":25002977,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-role","ansible-roles","container","containerd","containers","cri","docker","k8s","kubernetes","oci","runc","runtime"],"created_at":"2024-10-13T07:24:17.254Z","updated_at":"2025-08-30T12:09:39.828Z","avatar_url":"https://github.com/githubixx.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--\nCopyright (C) 2021-2025 Robert Wimmer\nSPDX-License-Identifier: GPL-3.0-or-later\n--\u003e\n\n# ansible-role-runc\n\nAnsible role to install [runc](https://github.com/opencontainers/runc). `runc` is a CLI tool for spawning and [running](https://github.com/opencontainers/runc#using-runc) containers on Linux according to the OCI specification.\n\n## Changelog\n\n**Change history:**\n\nSee full [CHANGELOG](https://github.com/githubixx/ansible-role-runc/blob/master/CHANGELOG.md)\n\n**Recent changes:**\n\n## 0.7.0+1.3.0\n\n- **UPDATE**\n  - update runc to `1.3.0`\n\n- **MOLECULE**\n  - Use `generic/arch` Vagrant box instead of `archlinux/archlinux` (no longer available)\n  - Install `openssl` package for Archlinux\n  - Removed Ubuntu 20.04 because reached end of life\n  - Removed 'Upgrade the whole system' task\n\n## 0.6.0+1.2.4\n\n- **UPDATE**\n  - update runc to `1.2.4`\n\n## 0.5.5+1.1.14\n\n- **UPDATE**\n  - update `CHANGELOG.md`\n\n## Installation\n\n- Directly download from Github (Change into Ansible roles directory before cloning. You can figure out the role path by using `ansible-config dump | grep DEFAULT_ROLES_PATH` command):\n`git clone https://github.com/githubixx/ansible-role-runc.git githubixx.runc`\n\n- Via `ansible-galaxy` command and download directly from Ansible Galaxy:\n`ansible-galaxy install role githubixx.runc`\n\n- Create a `requirements.yml` file with the following content (this will download the role from Github) and install with\n`ansible-galaxy role install -r requirements.yml` (change `version` if needed):\n\n```yaml\n---\nroles:\n  - name: githubixx.runc\n    src: https://github.com/githubixx/ansible-role-runc.git\n    version: 0.7.0+1.3.0\n```\n\n## Role Variables\n\n```yaml\n# runc version to install\nrunc_version: \"1.3.0\"\n\n# Where to install \"runc\" binaries.\nrunc_bin_directory: \"/usr/local/sbin\"\n\n# Owner/group of \"runc\" binary. If the variables are not set\n# the resulting binary will be owned by the current user.\nrunc_owner: \"root\"\nrunc_group: \"root\"\n\n# Specifies the permissions of the \"runc\" binary\nrunc_binary_mode: \"0755\"\n\n# Processor architecture \"runc\" should run on.\n# Currently only \"amd64\" is available.\nrunc_arch: \"amd64\"\n\n# Name of the binary filename to download\nrunc_archive: \"runc.{{ runc_arch }}\"\n\n# The runc download URL (normally no need to change it)\nrunc_url: \"https://github.com/opencontainers/runc/releases/download/v{{ runc_version }}/{{ runc_archive }}\"\n\n# SHA256 checksum (normally no need to change it / see: https://github.com/opencontainers/runc/releases)\nrunc_checksum: \"sha256:https://github.com/opencontainers/runc/releases/download/v{{ runc_version }}/runc.sha256sum\"\n```\n\n## Example Playbook\n\n```yaml\n- hosts: runc\n  roles:\n    - githubixx.runc\n```\n\n## Testing\n\nThis role has a small test setup that is created using [Molecule](https://github.com/ansible-community/molecule), libvirt (vagrant-libvirt) and QEMU/KVM. Please see my blog post [Testing Ansible roles with Molecule, libvirt (vagrant-libvirt) and QEMU/KVM](https://www.tauceti.blog/posts/testing-ansible-roles-with-molecule-libvirt-vagrant-qemu-kvm/) how to setup. The test configuration is [here](https://github.com/githubixx/ansible-role-runc/tree/master/molecule/default).\n\nAfterwards molecule can be executed:\n\n```bash\nmolecule converge\n```\n\nThis will setup a few virtual machines (VM) with different supported Linux operating systems and installs `runc`. A small verification step is also included:\n\n```bash\nmolecule verify\n```\n\nTo clean up run\n\n```bash\nmolecule destroy\n```\n\n## License\n\nGNU GENERAL PUBLIC LICENSE Version 3\n\n## Author Information\n\n[http://www.tauceti.blog](http://www.tauceti.blog)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithubixx%2Fansible-role-runc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgithubixx%2Fansible-role-runc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgithubixx%2Fansible-role-runc/lists"}