[Multi_K8s-Plugin] Add initializer hook for Helm repo and OCI registry auth#6723
Open
mohammedfirdouss wants to merge 2 commits intopipe-cd:masterfrom
Open
[Multi_K8s-Plugin] Add initializer hook for Helm repo and OCI registry auth#6723mohammedfirdouss wants to merge 2 commits intopipe-cd:masterfrom
mohammedfirdouss wants to merge 2 commits intopipe-cd:masterfrom
Conversation
…y auth Signed-off-by: Mohammed Firdous <124298708+mohammedfirdouss@users.noreply.github.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6723 +/- ##
==========================================
+ Coverage 29.48% 33.25% +3.76%
==========================================
Files 593 45 -548
Lines 63440 2977 -60463
==========================================
- Hits 18706 990 -17716
+ Misses 43289 1936 -41353
+ Partials 1445 51 -1394
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
What this PR does:
Adds an initializer hook to the
kubernetes_multiclusterplugin, bringing it to parity with the single-clusterkubernetesplugin.At plugin startup, the initializer:
helm repo add+helm repo update)helm registry login)This also introduces
KubernetesPluginConfig(withchartRepositoriesandchartRegistriesfields) as the plugin-level config type, replacingsdk.ConfigNoneacross the deployment, livestate, and plan-preview plugin interfaces.Why we need it:
Without this, users of the multicluster plugin deploying from private Helm chart repositories or OCI registries would get a 401 Unauthorized error at manifest load time with no clear way to provide credentials. The single-cluster plugin has supported this since its initializer was added — the multicluster plugin was missing the equivalent.
Which issue(s) this PR fixes:
Fixes #6446
Does this PR introduce a user-facing change?:
chartRepositoriesandchartRegistriesin their piped plugin config for the multicluster plugin, enabling deployments from private Helm repositories and OCI registries.