refactor: ♻️ move ArgoCD/Epinio to a Rancher Marketplace Helm catalog - #7
Merged
Merged
Conversation
Release 0.1.0 v0.1.0
Publish argocd/ and epinio/ as thin umbrella Helm charts under charts/, released to a gh-pages Helm repo via chart-releaser-action. Replace the argocd/epinio dispatch.sh feature scripts with a new marketplace step that registers the catalog as a Rancher ClusterRepo; installing and uninstalling those apps now happens through Rancher's own Apps & Marketplace UI instead of dispatch.sh up/down. cockpit/ and dockermanager/ are unaffected since they configure the host itself.
Contributor
Author
|
CI status:
Generated by Claude Code |
Avoids failing every PR in orgs that haven't configured a gitleaks license secret; the step now no-ops instead of erroring out.
tomgrv
marked this pull request as ready for review
August 31, 2026 11:11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
argocd/andepinio/out of thedispatch.shfeature-script model into Helm charts published as a standard Helm repo (GitHub Pagesindex.yaml), addable in Rancher under Apps & Marketplace → Repositories.charts/argocd/andcharts/epinio/- thin umbrella charts wrapping the upstreamargo-cd/epiniocharts, withvalues.yamldefaults mirroring the old--setflags and aREADME.mddocumenting required values (global.domain,api.adminPassword, etc. for Epinio)..github/workflows/publish-charts.yml, usinghelm/chart-releaser-action, to package and publishcharts/**togh-pageson push tomain.argocd/andepinio/entirely and adds a newmarketplace/dispatch.shstep (on by default, depends onrancher) that registers the published catalog as a RancherClusterRepo(catalog.cattle.io/v1). Install/uninstall of ArgoCD/Epinio now happens through Rancher's own UI, notdispatch.sh up/down.cockpit/anddockermanager/are untouched - they configure the host itself (apt packages, systemd services), not Kubernetes workloads.README.md,summary/run.sh, and stray ArgoCD/Epinio mentions indispatch.sh/k3s/run.sh/vps-tailscale/run.shaccordingly.Test plan
bash -n dispatch.sh,bash -n marketplace/run.sh, and every other*/run.shparse cleanly.helm lint charts/argocd charts/epinio/helm dependency update- not run,helmisn't available in this environment; charts were hand-written to matchhelm dependencyblock conventions instead.bats tests/- not run,batsisn't available in this environment; tests are generic over*/run.shandmarketplace/run.shfollows the same conventions as every other feature, so they're expected to pass.ClusterRepoin a live Rancher cluster and installing a chart from it - not exercised here.Generated by Claude Code