{"id":19144208,"url":"https://github.com/bgelov/gitlab","last_synced_at":"2026-06-18T02:31:08.395Z","repository":{"id":187102508,"uuid":"676316097","full_name":"bgelov/gitlab","owner":"bgelov","description":"Some gitlab cheatsheets","archived":false,"fork":false,"pushed_at":"2023-08-10T16:22:10.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-22T19:31:45.408Z","etag":null,"topics":["gitlab","gitlab-ci","gitlab-ci-pipeline"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bgelov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-08-08T23:42:51.000Z","updated_at":"2023-08-09T22:58:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"33809793-0091-4efe-a2b7-d4f6e55b5f88","html_url":"https://github.com/bgelov/gitlab","commit_stats":null,"previous_names":["bgelov/gitlab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bgelov/gitlab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgelov%2Fgitlab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgelov%2Fgitlab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgelov%2Fgitlab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgelov%2Fgitlab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bgelov","download_url":"https://codeload.github.com/bgelov/gitlab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bgelov%2Fgitlab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34474063,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-18T02:00:06.871Z","response_time":128,"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":["gitlab","gitlab-ci","gitlab-ci-pipeline"],"created_at":"2024-11-09T07:34:07.203Z","updated_at":"2026-06-18T02:31:08.374Z","avatar_url":"https://github.com/bgelov.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# gitlab\nSome gitlab cheatsheets\n\n# Examples\nhttps://docs.gitlab.com/ee/ci/examples/\n\n# GitLab Variables\nPredefined Variables Docs: https://docs.gitlab.com/ee/ci/variables/predefined_variables.html\n\n# GitLab Runner\nDocs: https://docs.gitlab.com/runner/commands/\n\n```\ngitlab-runner --help\n\nCOMMANDS:\n   exec                  execute a build locally\n   list                  List all configured runners\n   run                   run multi runner service\n   register              register a new runner\n   reset-token           reset a runner's token\n   install               install service\n   uninstall             uninstall service\n   start                 start service\n   stop                  stop service\n   restart               restart service\n\n**   status                get status of a service**\nsudo gitlab-runner status\nRuntime platform                                    arch=amd64 os=linux pid=....... revision=...... version=16.0.2\ngitlab-runner: Service is running\n\n\n   run-single            start single runner\n   unregister            unregister specific runner\n\n**   verify                verify all registered runners**\nsudo gitlab-runner verify\nRuntime platform                                    arch=amd64 os=linux pid=....... revision=...... version=16.0.2\nRunning in system-mode.\nVerifying runner... is alive                        runner=.......\n\n\n   artifacts-downloader  download and extract build artifacts (internal)\n   artifacts-uploader    create and upload build artifacts (internal)\n   cache-archiver        create and upload cache artifacts (internal)\n   cache-extractor       download and extract cache artifacts (internal)\n   cache-init            changed permissions for cache paths (internal)\n   health-check          check health for a specific address\n   read-logs             reads job logs from a file, used by kubernetes executor (internal)\n   help, h               Shows a list of commands or help for one command\n```\n\n\n# Gitlab Runner Executors\nDocs: https://docs.gitlab.com/runner/executors/\n```\nSSH\nShell\nParallels\nVirtualBox\n\nDocker (https://docs.gitlab.com/runner/install/docker.html)\n- Use kaniko: https://docs.gitlab.com/ee/ci/docker/using_kaniko.html\n- error during connect: Get \"http://docker...\" dial tcp: lookup docker on ... no such host \nAdd to .toml docker.sock: volumes = [\"/var/run/docker.sock:/var/run/docker.sock\", \"/cache\"]\n\nDocker Autoscaler (experiment)\n\nDocker Machine (auto-scaling)\n- Use kaniko: https://docs.gitlab.com/ee/ci/docker/using_kaniko.html\n\nKubernetes\n- Use kaniko: https://docs.gitlab.com/ee/ci/docker/using_kaniko.html\n\nInstance (experiment)\nCustom\n```\n![image](https://github.com/bgelov/gitlab/assets/5302940/982583ac-6f9d-4354-9834-f39aea9b4d4c)\n\n![image](https://github.com/bgelov/gitlab/assets/5302940/b23cc971-dddc-48fa-91e7-0ff12cc233a2)\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgelov%2Fgitlab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbgelov%2Fgitlab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbgelov%2Fgitlab/lists"}