lpsm-dev / drprune

πŸ€– [Community Project] - Prune old images on GitHub and GitLab container registry

Home Page:https://github.com/lpmatos/drprune

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gif-header

✨ Prune container images in a CLI way ✨

Semantic Release Commitizen friendly GitHub repo size


gif-about

A CLI tool that prune old images on GitHub (ghcr.io) registry and GitLab (registry.gitlab.com) registry

Getting Started   |    Description   |    Usage   |    Installation   |    Concepts   |    Versioning


➀ Getting Started

If you want contribute on this project, first you need to make a git clone:

git clone --depth 1 https://github.com/ci-monk/drprune.git -b main

This will give you access to the code on your local machine.

➀ Usage

Variables

Environment Description
GH_TOKEN GitHub API Token
GH_USERNAME GitHub User/Organization Name
GH_CONTAINER GitHub Container Name
GL_TOKEN GitLab API Token
GL_NAMESPACE GitLab Namespace

CLI

GitHub

drprune gh images -t $GH_TOKEN -n <username> -c <container-name>
drprune gh insights -t $GH_TOKEN -n <username>

GitLab

drprune gl images -t $GL_TOKEN -ns <namespace>
drprune gl insights -t $GL_TOKEN -ns <namespace>

CI

GitHub Actions

GitLab CI

➀ Installation

with go:

# if you cannot install directly, try following command,
# then input install command again
go get -u github.com/lpmatos/drprune/cmd/drprune

# or
go get -v ./...
go run ./cmd/drprune/main.go --help

with brew:

brew tap ci-monk/tools
brew install drprune

➀ Concepts

Cobra

Cobra is a CLI framework for Golang. Using it you can speed up your development and creating a powerful and modern CLI application. Cobra is built on a structure of commands, arguments and flags:

  • Commands represent actions.
  • Args are things.
  • Flags are modifiers for those actions.

The best applications will read like sentences when used. Users will know how to use the application because they will natively understand how to use it. This pattern is: APPCLI VERB NOUN --ADJECTIVE or APPCLI COMMAND ARG --FLAG.

Commands

Command is the central point of the application. Each interaction thar the application supports will be contained in a command. We can create commands with children commands and optionally run an action. In the example above, server is the command.

Flags

A flag is a way to modify the behavior of a command. Cobra supports fully POSIX-compliant flags as well the Go flag package. A Cobra command can define flags that persist through to children commands and flags that are only available to that command. In the example above, port is the flag.

➀ Learnings

  • Create a Golang CLI application.
  • Create a multistage Golang Dockerfile.
  • Create a docker-compose file with waiting entrypoint.
  • Setup a Golang Releaser publish pipeline using github actions.
  • Understand how GiHub works with packages.
  • Understand how GitLab works with packages.
  • Handler operations in GitHub API to delete container images using a SDK.
  • Handler operations in GitLab API to delete container images using a SDK.

➀ Links

➀ Versioning

To check the change history, please access the CHANGELOG.md file.

➀ Project status

The project is currently being updated! πŸ‘Ύ

➀ Donations

If my work has impacted your life in a positive way and you'd like to buy me a coffee (or a hundred), that'd be much appreciated!

➀ Show your support

Give me a ⭐️ if this project helped you!

gif-header

Made with πŸ’œ by me πŸ‘‹ inspired on readme-md-generator

About

πŸ€– [Community Project] - Prune old images on GitHub and GitLab container registry

https://github.com/lpmatos/drprune

License:MIT License


Languages

Language:Go 90.3%Language:Makefile 9.1%Language:Dockerfile 0.6%