use my namespace as key namespace#1867
Merged
alvneiayu merged 1 commit intobitnami-labs:mainfrom Jan 15, 2026
Merged
Conversation
7bbdb75 to
7438933
Compare
rickbrouwer
suggested changes
Jan 14, 2026
pkg/controller/main.go
Outdated
| kinformer := initSecretInformerFactory(clientset, keyNamespace, func(options *metav1.ListOptions) { | ||
| options.LabelSelector = keySelector.String() | ||
| }, f.WatchForSecrets) | ||
| sinformer := initSecretInformerFactory(clientset, namespace, tweakopts, f.SkipRecreate) |
There was a problem hiding this comment.
Should we pass !f.SkipRecreate instead of f.SkipRecreate to make the logic consistent with the parameter name enabled?
Suggested change
| sinformer := initSecretInformerFactory(clientset, namespace, tweakopts, f.SkipRecreate) | |
| sinformer := initSecretInformerFactory(clientset, namespace, tweakopts, !f.SkipRecreate) |
Signed-off-by: Jan Jansen <[email protected]>
7438933 to
42202eb
Compare
rickbrouwer
approved these changes
Jan 14, 2026
Contributor
Author
|
@alvneiayu Would you like to review? |
alvneiayu
approved these changes
Jan 15, 2026
Collaborator
|
thanks a lot for your contribution @farodin91 |
Contributor
|
Is there already a plan to release a new version that includes this fix? (especially the |
Collaborator
|
@armingerten the releases are done 1 per month. Next week, we are planning to have a release. |
Contributor
|
@alvneiayu, great! Thanks for the quick response 🙏 |
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Feb 15, 2026
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [bitnami-labs/sealed-secrets](https://github.com/bitnami-labs/sealed-secrets) | minor | `v0.34.0` → `v0.35.0` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>bitnami-labs/sealed-secrets (bitnami-labs/sealed-secrets)</summary> ### [`v0.35.0`](https://github.com/bitnami-labs/sealed-secrets/blob/HEAD/RELEASE-NOTES.md#v0350) [Compare Source](bitnami-labs/sealed-secrets@v0.34.0...v0.35.0) - my namespace as key namespace ([#​1867](bitnami-labs/sealed-secrets#1867)) - Bump go 1.25.7 ([#​1880](bitnami-labs/sealed-secrets#1880)) - Update client-go and api 0.35.0 ([#​1868](bitnami-labs/sealed-secrets#1868)) - Bump golang.org/x/crypto from 0.46.0 to 0.47.0 ([#​1863](bitnami-labs/sealed-secrets#1863)) - Bump github.com/onsi/gomega from 1.38.3 to 1.39.0 ([#​1865](bitnami-labs/sealed-secrets#1865)) - Bump github.com/onsi/ginkgo/v2 from 2.27.3 to 2.27.5 ([#​1864](bitnami-labs/sealed-secrets#1864)) - Bump distroless/static from `4b2a093` to `cd64bec` in /docker ([#​1866](bitnami-labs/sealed-secrets#1866)) - Bump k8s.io/code-generator from 0.34.3 to 0.35.0 ([#​1858](bitnami-labs/sealed-secrets#1858)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMC4zIiwidXBkYXRlZEluVmVyIjoiNDMuMTAuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6Om1pbm9yIl19-->
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.
Fixes #1862