Skip to content

feat(container): update image ghcr.io/kashalls/kromgo ( v0.7.5 ➔ v0.8.2 )#584

Merged
Aviator-Coding merged 1 commit intomainfrom
renovate/ghcr.io-kashalls-kromgo-0.x
Mar 18, 2026
Merged

feat(container): update image ghcr.io/kashalls/kromgo ( v0.7.5 ➔ v0.8.2 )#584
Aviator-Coding merged 1 commit intomainfrom
renovate/ghcr.io-kashalls-kromgo-0.x

Conversation

@mortyops
Copy link
Copy Markdown
Contributor

@mortyops mortyops bot commented Mar 5, 2026

This PR contains the following updates:

Package Update Change
ghcr.io/kashalls/kromgo minor v0.7.5v0.8.2

Release Notes

kashalls/kromgo (ghcr.io/kashalls/kromgo)

v0.8.2

Compare Source

What's Changed

Full Changelog: kashalls/kromgo@v0.8.1...v0.8.2

v0.8.1

Compare Source

Full Changelog: kashalls/kromgo@v0.8.0...v0.8.1

v0.8.0

Compare Source

Notable Changes
  • The / route now returns the status code 200, instead of 404, and can now show a list of metrics available for querying, instead of having to check your config each time.
  • /metrics now shows some metrics on what endpoints were called. Yippie!
  • Images are now signed with Cosign.
What's Changed
New Contributors

Full Changelog: kashalls/kromgo@v0.7.5...v0.8.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@mortyops
Copy link
Copy Markdown
Contributor Author

mortyops bot commented Mar 5, 2026

--- kubernetes/apps/monitoring/kromgo/app Kustomization: monitoring/kromgo HelmRelease: monitoring/kromgo

+++ kubernetes/apps/monitoring/kromgo/app Kustomization: monitoring/kromgo HelmRelease: monitoring/kromgo

@@ -40,13 +40,13 @@

             env:
               HEALTH_PORT: 8080
               PROMETHEUS_URL: http://prometheus-operated.monitoring.svc.cluster.local:9090
               SERVER_PORT: 80
             image:
               repository: ghcr.io/kashalls/kromgo
-              tag: v0.7.5@sha256:25df18d426e19aafa7526cd9138a6f35ca73c6ef6fcfcf9de8971c4334f6efdf
+              tag: v0.8.2@sha256:bd2213c7e471ada38bfec5600f17ede76177815d560d2d6b9a0f433054c93080
             probes:
               liveness:
                 custom: true
                 enabled: true
                 spec:
                   failureThreshold: 3
--- kubernetes/apps/openclaw/homeops-claw Kustomization: openclaw/homeops-claw OpenClawInstance: openclaw/homeops-claw

+++ kubernetes/apps/openclaw/homeops-claw Kustomization: openclaw/homeops-claw OpenClawInstance: openclaw/homeops-claw

@@ -50,39 +50,23 @@

       name: openclaw-skills-secret
   gateway:
     controlUiOrigins: []
     existingSecret: openclaw-gateway-token
   initContainers:
   - args:
-    - |
-      set -e
-      BASE="/home/openclaw/.openclaw"
-      export PNPM_HOME="$BASE/pnpm"
-      export PATH="$PNPM_HOME:$BASE/.local/bin:/usr/local/bin:/usr/bin:/bin"
-
-      # gh CLI (extract from .deb)
-      GH_VERSION="2.88.1"
-      if [ ! -f "$BASE/.local/bin/gh" ]; then
-        mkdir -p "$BASE/.local/bin" /tmp/gh-install
-        curl -fsSL -o /tmp/gh-install/gh.deb \
-          "https://github.com/cli/cli/releases/download/v${GH_VERSION}/gh_${GH_VERSION}_linux_amd64.deb"
-        dpkg-deb -x /tmp/gh-install/gh.deb /tmp/gh-install
-        cp /tmp/gh-install/usr/bin/gh "$BASE/.local/bin/gh"
-        rm -rf /tmp/gh-install
-        echo "gh $GH_VERSION installed"
-      else
-        echo "gh already installed, skipping"
-      fi
-
-      # summarize (pnpm global to PVC)
-      if ! command -v summarize >/dev/null 2>&1; then
-        pnpm add -g @steipete/summarize
-        echo "summarize installed"
-      else
-        echo "summarize already installed, skipping"
-      fi
+    - "set -e\nBASE=\"/home/openclaw/.openclaw\"\nexport PNPM_HOME=\"$BASE/pnpm\"\n\
+      export PATH=\"$PNPM_HOME:$BASE/.local/bin:/usr/local/bin:/usr/bin:/bin\"\n\n\
+      # gh CLI (extract from .deb \u2014 avoids tarball redirect issues)\nGH_VERSION=\"\
+      2.88.1\"\nif [ ! -f \"$BASE/.local/bin/gh\" ]; then\n  mkdir -p \"$BASE/.local/bin\"\
+      \ /tmp/gh-install\n  curl -fsSL -o /tmp/gh-install/gh.deb \\\n    \"https://github.com/cli/cli/releases/download/v/gh__linux_amd64.deb\"\
+      \n  dpkg-deb -x /tmp/gh-install/gh.deb /tmp/gh-install\n  cp /tmp/gh-install/usr/bin/gh\
+      \ \"$BASE/.local/bin/gh\"\n  rm -rf /tmp/gh-install\n  echo \"gh  installed\"\
+      \nelse\n  echo \"gh already installed, skipping\"\nfi\n\n# summarize (pnpm global\
+      \ to PVC)\nif ! command -v summarize >/dev/null 2>&1; then\n  pnpm add -g @steipete/summarize\n\
+      \  echo \"summarize installed\"\nelse\n  echo \"summarize already installed,\
+      \ skipping\"\nfi\n"
     command:
     - /bin/sh
     - -c
     image: ghcr.io/openclaw/openclaw:latest
     name: install-tools
     volumeMounts:

@mortyops
Copy link
Copy Markdown
Contributor Author

mortyops bot commented Mar 5, 2026

--- HelmRelease: monitoring/kromgo Deployment: monitoring/kromgo

+++ HelmRelease: monitoring/kromgo Deployment: monitoring/kromgo

@@ -44,13 +44,13 @@

         - name: HEALTH_PORT
           value: '8080'
         - name: PROMETHEUS_URL
           value: http://prometheus-operated.monitoring.svc.cluster.local:9090
         - name: SERVER_PORT
           value: '80'
-        image: ghcr.io/kashalls/kromgo:v0.7.5@sha256:25df18d426e19aafa7526cd9138a6f35ca73c6ef6fcfcf9de8971c4334f6efdf
+        image: ghcr.io/kashalls/kromgo:v0.8.2@sha256:bd2213c7e471ada38bfec5600f17ede76177815d560d2d6b9a0f433054c93080
         livenessProbe:
           failureThreshold: 3
           httpGet:
             path: /readyz
             port: 8080
           initialDelaySeconds: 0

@mortyops mortyops bot force-pushed the renovate/ghcr.io-kashalls-kromgo-0.x branch from 3a59570 to 09eee3f Compare March 8, 2026 04:40
@mortyops mortyops bot changed the title feat(container): update image ghcr.io/kashalls/kromgo ( v0.7.5 ➔ v0.8.0 ) feat(container): update image ghcr.io/kashalls/kromgo ( v0.7.5 ➔ v0.8.2 ) Mar 8, 2026
Copy link
Copy Markdown
Owner

@Aviator-Coding Aviator-Coding left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 Auto-approved: safe container/helm update

@mortyops mortyops bot force-pushed the renovate/ghcr.io-kashalls-kromgo-0.x branch from 09eee3f to e2e7930 Compare March 18, 2026 01:47
….2 )

| datasource | package                 | from   | to     |
| ---------- | ----------------------- | ------ | ------ |
| docker     | ghcr.io/kashalls/kromgo | v0.7.5 | v0.8.2 |
@mortyops mortyops bot force-pushed the renovate/ghcr.io-kashalls-kromgo-0.x branch from e2e7930 to 975a74c Compare March 18, 2026 01:57
@Aviator-Coding
Copy link
Copy Markdown
Owner

🤖 Auto-review: Merging

Minor update: kromgo v0.7.5 → v0.8.2. Kromgo generates dynamic badges and stats displays for repository READMEs, pulling metrics from Prometheus. This is a minor version bump with all CI checks (Flux Local diff/test, Image Pull, Labeler) passing. Low risk — this is a cosmetic/informational service with no impact on cluster workloads. Safe to merge.

@Aviator-Coding Aviator-Coding merged commit 45db34b into main Mar 18, 2026
12 checks passed
@Aviator-Coding Aviator-Coding deleted the renovate/ghcr.io-kashalls-kromgo-0.x branch March 18, 2026 02:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant