[PR #1279] Allow excluding services from global auto update #9309

Open
opened 2026-05-03 05:28:59 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/1279
Author: @mateuszziolkowski
Created: 3/27/2026
Status: 🔄 Open

Base: mainHead: feat/ignore-polling-services


📝 Commits (2)

  • e2d3740 add ignore_polling_services for global auto update
  • f05df95 rename 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:
obraz

When poll for updates enabled:
obraz


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

## 📋 Pull Request Information **Original PR:** https://github.com/moghtech/komodo/pull/1279 **Author:** [@mateuszziolkowski](https://github.com/mateuszziolkowski) **Created:** 3/27/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `feat/ignore-polling-services` --- ### 📝 Commits (2) - [`e2d3740`](https://github.com/moghtech/komodo/commit/e2d3740d2fc4150272b1582592fca29e174583b4) add ignore_polling_services for global auto update - [`f05df95`](https://github.com/moghtech/komodo/commit/f05df9595318ede96439381b6898b9ba5f196a2d) rename ignore_polling_services to auto_update_skip_services and reorganize ### 📊 Changes **5 files changed** (+54 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `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) </details> ### 📄 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: <img width="380" height="208" alt="obraz" src="https://github.com/user-attachments/assets/91a51347-3917-423c-bf42-ee6738e8ef44" /> When poll for updates enabled: <img width="664" height="311" alt="obraz" src="https://github.com/user-attachments/assets/7c394362-d713-4a48-8324-a5e1f6a0b7eb" /> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-03 05:28:59 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#9309