{"id":16625959,"url":"https://github.com/yurrriq/helm-outdated","last_synced_at":"2026-04-24T14:31:59.744Z","repository":{"id":148631102,"uuid":"145623529","full_name":"yurrriq/helm-outdated","owner":"yurrriq","description":"A Helm plugin to list outdated subcharts","archived":false,"fork":false,"pushed_at":"2018-09-27T20:38:37.000Z","size":11,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T13:23:06.904Z","etag":null,"topics":["dependency-management","helm","helm-plugin","kubernetes","outdated-dependencies"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yurrriq.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-21T21:55:00.000Z","updated_at":"2025-01-19T18:22:57.000Z","dependencies_parsed_at":"2023-03-30T07:05:24.666Z","dependency_job_id":null,"html_url":"https://github.com/yurrriq/helm-outdated","commit_stats":{"total_commits":10,"total_committers":1,"mean_commits":10.0,"dds":0.0,"last_synced_commit":"b2e13248391823b612a02230df88c420727ecdbd"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/yurrriq/helm-outdated","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Fhelm-outdated","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Fhelm-outdated/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Fhelm-outdated/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Fhelm-outdated/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yurrriq","download_url":"https://codeload.github.com/yurrriq/helm-outdated/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurrriq%2Fhelm-outdated/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32227344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dependency-management","helm","helm-plugin","kubernetes","outdated-dependencies"],"created_at":"2024-10-12T04:08:05.714Z","updated_at":"2026-04-24T14:31:59.729Z","avatar_url":"https://github.com/yurrriq.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"* helm-outdated\n** Dependencies\n- [[https://helm.sh/][Helm]] (obviously)\n- (GNU) awk\n- [[https://yq.readthedocs.io/][yq]]\n- Optional (for ~make install~): [[https://www.gnu.org/software/stow/][GNU Stow]]\n\n** Script\n   :PROPERTIES:\n   :header-args: :tangle outdated.sh\n   :END:\n\nBe safer.\n#+BEGIN_SRC sh :shebang \"#! /usr/bin/env bash\"\nset -euo pipefail\n#+END_SRC\n\nIterate through each dependency, and determine if it's outdated.\n#+BEGIN_SRC sh\nwhile IFS= read -r dependency; do\n    subchart=\"${dependency%-*}\"\n    current=\"${dependency##*-}\"\n    latest=$(helm inspect chart \"$subchart\" | yq -r '.version')\n\n    if [ \"$current\" == \"$latest\" ]; then\n        printf \"%s is up to date.\\\\n\" \"$subchart\"\n    else\n        printf \"Consider upgrading %s: %s -\u003e %s.\\\\n\" \\\n            \"$subchart\" \"$current\" \"$latest\"\n    fi\ndone \u003c \u003c(helm dep list \\\n    | grep -v WARNING \\\n    | tail -n+2 | head -n-1 | sort -u \\\n    | awk '{ sub(\"@\",\"\",$3); printf \"%s/%s-%s\\n\", $3, $1, $2; }')\n#+END_SRC\n** Metadata\n#+BEGIN_SRC yaml :tangle plugin.yaml :padline no\nname: outdated\nversion: 0.0.5\nusage: list outdated subcharts\ndescription: |-\n  A Helm plugin to list outdated subcharts\ncommand: \"$HELM_PLUGIN_DIR/outdated.sh\"\n#+END_SRC\n** Installation\n   :PROPERTIES:\n   :header-args: :tangle Makefile :padline no\n   :END:\n\nThe default target, =install=, is phony.\n#+BEGIN_SRC makefile\n.DEFAULT: install\n.PHONY: install\n#+END_SRC\n\nThe =install= target tangles [[./README.org][README.org]], creates the target directory if\nmissing, and uses [[https://www.gnu.org/software/stow/][GNU Stow]] to install the plugin.\n#+BEGIN_SRC makefile\ninstall: README.org\n\t@ emacs --batch --quick \\\n\t\t--load ob-tangle \\\n\t\t--eval '(setq org-src-preserve-indentation t)' \\\n\t\t--eval '(org-babel-tangle-file \"$\u003c\")'\n\t@ mkdir -p \"$${HELM_HOME:-$$HOME/.helm}/plugins/outdated\"\n\t@ stow -t \"$${HELM_HOME:-$$HOME/.helm}/plugins/outdated\" .\n#+END_SRC\n\n** Stow Ignore List\n#+BEGIN_SRC txt :tangle .stow-local-ignore :padline no\n\\.DS_Store\n\\.git\nMakefile\nREADME\\.org\n#+END_SRC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurrriq%2Fhelm-outdated","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyurrriq%2Fhelm-outdated","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurrriq%2Fhelm-outdated/lists"}