|
|
A cross-platform GUI tool built with Go and Fyne to easily and correctly create Kubernetes ImagePullSecrets, ensuring accuracy and reducing common errors.
The app focuses on usability, transparency, and reliability when working with private container registries and Kubernetes YAML manifests.
- Features
- Screenshots
- Installation
- Running from Source
- Building from Source
- Usage
- Contribution
- License
- Create Kubernetes ImagePullSecrets as valid YAML
- Copy the generated secret to clipboard or save it to a file
- Built-in history for registries and secret metadata
- Stores up to 100 entries
- Oldest entries are automatically removed when the limit is reached
- Base64 Encode / Decode utility for Docker-Config JSON string
The easiest way to install RegistryMate, is to use the precompiled binaries for your platform.
You can download the latest release here:
- Setup CD-Pipeline
- Release v1.0.0
- Linux build
- Windows build
- macOS build
- Download the latest release for linux, and follow these steps:
mkdir registrymate
tar -xvf RegistryMate-<Version>-linux-x86_64.tar.xz -C registrymate
cd registrymate
# Install only for the current user -> ~./local
make user-install
# Install System wide
sudo make install-
Download the latest release for windows, and follow these steps:
-
If you use Windows 10 build 17063 or later
mkdir registrymate
tar -xf RegistryMate-<Version\>-windows-amd64.zip -C registrymate
cd registrymate- Otherwise you can use the following Powershell command, or you Unzip the archive manually
Expand-Archive -Force C:\path\to\RegistryMate-<Version\>-windows-amd64.zip C:\where\to\extract\to- work in progress
- Go >= 1.22
- Fyne dependencies see the Quick-Start-Guide
git clone https://github.com/javaLux/registrymate.git
cd registrymate
go mod tidy
go run .The GUI window will open, allowing you to create easily Kubernetes ImagePullSecrets
GOOS=linux GOARCH=amd64 go buildGOOS=darwin GOARCH=amd64 go buildGOOS=windows GOARCH=amd64 go buildFor production-ready packages with icons, metadata, and installer formats:
# Install Fyne CLI
go install fyne.io/tools/cmd/fyne@latest
# For Linux packages, also install:
sudo apt-get install dpkg-dev imagemagick wget fuse libfuse2Use the provided build script that creates both .deb and .AppImage packages:
# Make the script executable
chmod +x build.sh
# Run the build
./build.shThis will create:
dist/registrymate_<Version>_amd64.deb- Debian packagedist/registrymate_<Version>-x86_64.AppImage- Universal Linux packagedist/SHA256SUMS- Checksums for verificationdist/MD5SUMS- MD5 checksums
fyne package --os linux --releasefyne package --os darwin --releasefyne package --os windows --releaseTo install your development build system-wide:
fyne install --icon Icon.png-
Start the application
-
Enter required information:
- Registry:
- URL
- Username
- Password or token
- Registry:
-
Optional - Secret-Metadata
- These values must comply with Kubernetes-Naming-Rules.
- Name -> If not set or invalid, a random name will be generated
- Namespace -> If invalid, it is omitted.
- These values must comply with Kubernetes-Naming-Rules.
-
Generate the ImagePullSecret by pressing the ► Button or hit ENTER
-
Choose one of the following actions:
- Copy the YAML to clipboard
- Save the YAML to a file
-
Use the Base64 Encode / Decode section if you need to inspect or verify the Docker-Config JSON string
Previously used registries and metadata are stored in the history and can be reused quickly.
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/YourNewFeature) - Commit your changes (
git commit -m 'Add some YourNewFeature') - Push to the branch (
git push origin feature/YourNewFeature) - Open a Pull Request
This project is licensed under the MIT License.
See the LICENSE file for details.

