mirror of
https://github.com/moghtech/komodo.git
synced 2026-05-07 19:35:38 -05:00
[PR #1279] Allow excluding services from global auto update #6930
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/moghtech/komodo/pull/1279
Author: @mateuszziolkowski
Created: 3/27/2026
Status: 🔄 Open
Base:
main← Head:feat/ignore-polling-services📝 Commits (2)
e2d3740add ignore_polling_services for global auto updatef05df95rename ignore_polling_services to auto_update_skip_services and reorganize📊 Changes
5 files changed (+54 additions, -1 deletions)
View changed files
📝
bin/core/src/api/write/stack.rs(+7 -1)📝
client/core/rs/src/entities/stack.rs(+12 -0)📝
client/core/ts/src/types.ts(+6 -0)📝
ui/public/client/types.d.ts(+6 -0)📝
ui/src/resources/stack/config/index.tsx(+23 -0)📄 Description
Problem:
We have our Global Auto Update set to run every 3 minutes, which depletes docker hub limits really fast. Only one service in our stack needs to be constantly checked for updates (and it's on ghcr.io, so no rate limit problem).
One of the solutions was to set specific image digests (@sha256:...) for all services using images from docker hub in compose.yaml, but then when you want to update - you have to manually check for digests and replace them in compose.yaml.
Solution:
This PR adds new option, which allows you to exclude services from Global Auto Updates checks (manual checks still look for new digest).
When poll for updates disabled:

When poll for updates enabled:

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.