Update Helm release external-secrets to v0.16.1 - autoclosed #130

Closed
renovate-bot wants to merge 1 commits from renovate/external-secrets-0.x into main
Collaborator

This PR contains the following updates:

Package Update Change
external-secrets minor 0.15.1 -> 0.16.1

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

external-secrets/external-secrets (external-secrets)

v0.16.1

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.16.1
Image: ghcr.io/external-secrets/external-secrets:v0.16.1-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.16.1-ubi-boringssl

What's Changed

Full Changelog: https://github.com/external-secrets/external-secrets/compare/v0.16.0...v0.16.1

Guide to Promoting to 0.16

Pre Upgrade checks

Make sure you are not using any v1alpha1 resources across all of your infrastructure.

You can do that by performing manual inspection on your manifests, tooling, etc.

Make sure there are no storedVersions on v1alpha1 for externalsecrets, clusterexternalsecrets, secretstores and clustersecretstores crds:

Run the following command:

kubectl get crd \
    externalsecrets.external-secrets.io\
    secretstores.external-secrets.io\
    clustersecretstores.external-secrets.io\
    clusterexternalsecrets.external-secrets.io\
    -o jsonpath='{.items[*].status.storedVersions[?(@​=="valpha1")]}' | \
    grep -q v1alpha1 && echo "NOT SAFE! REMOVE v1alpha1 FROM YOUR STORED VERSIONS" || echo "Safe to Continue"

If that command returns not safe, remove v1alpha1 from your stored versions. Make sure this status is persisted after you verify these commands.

kubectl patch --subresource=status crd externalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd secretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clusterexternalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clustersecretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 

Upgrading

CRDs as part of external-secrets installation

If you're installing external-secrets CRDs with helm (installCRDs=true - the default), all you need to do is

helm repo update
helm upgrade <your_app_name> external-secrets/external-secrets --version 0.16.1

The same goes if you're using argocd or flux and managing crds directly with helm. The above should just work.

CRDs installed separately

If CRDs are installed separately, the first step you need to do is bump the crds:

kubectl apply -f https://raw.githubusercontent.com/external-secrets/external-secrets/v0.16.1/deploy/crds/bundle.yaml

Verify no error occurs. After that, you can freely migrate external-secrets to v0.16.1.

Troubleshooting

conversion webhook for external-secrets.io/v1, Kind=ExternalSecret failed: the server could not find the requested resource

Root cause: the CRD installation process failed.
Double check your CRD installation process finished successfully

v0.16.0

Compare Source

Image: ghcr.io/external-secrets/external-secrets:v0.16.0
Image: ghcr.io/external-secrets/external-secrets:v0.16.0-ubi
Image: ghcr.io/external-secrets/external-secrets:v0.16.0-ubi-boringssl

!!! warning
it is known v0.16.0 will not be an easy upgrade if you're not consuming from our official sources via helm.
we are improving the upgrade path for users depending on kustomize in 0.16.1. Please be patient :)

Guide to Promoting to 0.16

Pre Upgrade checks

Make sure you are not using any v1alpha1 resources across all of your infrastructure.

You can do that by performing manual inspection on your manifests, tooling, etc.

Make sure there are no storedVersions on v1alpha1 for externalsecrets, clusterexternalsecrets, secretstores and clustersecretstores crds:

Run the following command:

kubectl get crd \
    externalsecrets.external-secrets.io\
    secretstores.external-secrets.io\
    clustersecretstores.external-secrets.io\
    clusterexternalsecrets.external-secrets.io\
    -o jsonpath='{.items[*].status.storedVersions[?(@&#8203;=="valpha1")]}' | \
    grep -q v1alpha1 && echo "NOT SAFE! REMOVE v1alpha1 FROM YOUR STORED VERSIONS" || echo "Safe to Continue"

If that command returns not safe, remove v1alpha1 from your stored versions. Make sure this status is persisted after you verify these commands.

kubectl patch --subresource=status crd externalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd secretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clusterexternalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 
kubectl patch --subresource=status crd clustersecretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' 

Upgrading

CRDs as part of external-secrets installation

If you're installing external-secrets CRDs with helm (installCRDs=true - the default), all you need to do is

helm repo update
helm upgrade <your_app_name> external-secrets/external-secrets --version 0.16.1

The same goes if you're using argocd or flux and managing crds directly with helm. The above should just work.

CRDs installed separately

If CRDs are installed separately, the first step you need to do is bump the crds:

kubectl apply -f https://raw.githubusercontent.com/external-secrets/external-secrets/v0.16.1/deploy/crds/bundle.yaml

Verify no error occurs. After that, you can freely migrate external-secrets to v0.16.1.

Troubleshooting

conversion webhook for external-secrets.io/v1, Kind=ExternalSecret failed: the server could not find the requested resource

Root cause: the CRD installation process failed.
Double check your CRD installation process finished successfully

spec.conversion.webhookClientConfig: Forbidden: should not be set when strategy is not set to Webhook

Use 0.16.1 as opposed to 0.16.0 on your installation path. That should be fixed on this release

My issue is not here What do I do?

Add a message to https://github.com/external-secrets/external-secrets/issues/4662

BREAKING CHANGES

This release introduces quite a few breaking changes, including:

  • Removal of Conversion Webhooks and SecretStore/v1alpha1, ExternalSecret/v1alpha1 and their cluster counterparts
  • Promotion of ExternalSecret/v1 and SecretStore/v1 and their cluster counterparts
  • Removal of v1 templating engine
  • Removal of ValueMaps from Fake Secret Store

if you have any issues during your upgrade, please check https://github.com/external-secrets/external-secrets/issues/4662

What's Changed

New Contributors

Full Changelog: https://github.com/external-secrets/external-secrets/compare/v0.15.1...v0.16.0


Configuration

📅 Schedule: Branch creation - "* */1 * * *" in timezone US/Central, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [external-secrets](https://github.com/external-secrets/external-secrets) | minor | `0.15.1` -> `0.16.1` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>external-secrets/external-secrets (external-secrets)</summary> ### [`v0.16.1`](https://github.com/external-secrets/external-secrets/releases/tag/v0.16.1) [Compare Source](https://github.com/external-secrets/external-secrets/compare/v0.16.0...v0.16.1) Image: `ghcr.io/external-secrets/external-secrets:v0.16.1` Image: `ghcr.io/external-secrets/external-secrets:v0.16.1-ubi` Image: `ghcr.io/external-secrets/external-secrets:v0.16.1-ubi-boringssl` #### What's Changed - chore: bump helm to 0.16.0 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4660 - fix: remove crds from bundle by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4664 - fix: applying several pipeline fixes by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4667 - fix: pipeline permissions by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4669 - fix: publish permissions by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4670 - fix: prevent is-fork by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4671 - fix: publish workflow by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4672 - fix: conversion setting on bundle crds by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4673 - fix: remove the conversion hook completely by [@&#8203;Skarlso](https://github.com/Skarlso) in https://github.com/external-secrets/external-secrets/pull/4675 **Full Changelog**: https://github.com/external-secrets/external-secrets/compare/v0.16.0...v0.16.1 ### Guide to Promoting to 0.16 #### Pre Upgrade checks ##### Make sure you are not using any `v1alpha1` resources across all of your infrastructure. You can do that by performing manual inspection on your manifests, tooling, etc. ##### Make sure there are no storedVersions on v1alpha1 for `externalsecrets`, `clusterexternalsecrets`, `secretstores` and `clustersecretstores` crds: Run the following command: kubectl get crd \ externalsecrets.external-secrets.io\ secretstores.external-secrets.io\ clustersecretstores.external-secrets.io\ clusterexternalsecrets.external-secrets.io\ -o jsonpath='{.items[*].status.storedVersions[?(@&#8203;=="valpha1")]}' | \ grep -q v1alpha1 && echo "NOT SAFE! REMOVE v1alpha1 FROM YOUR STORED VERSIONS" || echo "Safe to Continue" If that command returns not safe, remove v1alpha1 from your stored versions. Make sure this status is persisted after you verify these commands. kubectl patch --subresource=status crd externalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd secretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd clusterexternalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd clustersecretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' #### Upgrading ##### CRDs as part of external-secrets installation If you're installing external-secrets CRDs with helm (`installCRDs=true` - the default), all you need to do is helm repo update helm upgrade <your_app_name> external-secrets/external-secrets --version 0.16.1 The same goes if you're using argocd or flux and managing crds directly with helm. The above should just work. ##### CRDs installed separately If CRDs are installed separately, the first step you need to do is bump the crds: kubectl apply -f https://raw.githubusercontent.com/external-secrets/external-secrets/v0.16.1/deploy/crds/bundle.yaml Verify no error occurs. After that, you can freely migrate external-secrets to `v0.16.1`. #### Troubleshooting ##### conversion webhook for external-secrets.io/v1, Kind=ExternalSecret failed: the server could not find the requested resource Root cause: the CRD installation process failed. Double check your CRD installation process finished successfully ### [`v0.16.0`](https://github.com/external-secrets/external-secrets/releases/tag/v0.16.0) [Compare Source](https://github.com/external-secrets/external-secrets/compare/v0.15.1...v0.16.0) Image: `ghcr.io/external-secrets/external-secrets:v0.16.0` Image: `ghcr.io/external-secrets/external-secrets:v0.16.0-ubi` Image: `ghcr.io/external-secrets/external-secrets:v0.16.0-ubi-boringssl` !!! warning it is known v0.16.0 will not be an easy upgrade if you're not consuming from our official sources via helm. we are improving the upgrade path for users depending on kustomize in `0.16.1`. Please be patient :) ### Guide to Promoting to 0.16 #### Pre Upgrade checks ##### Make sure you are not using any `v1alpha1` resources across all of your infrastructure. You can do that by performing manual inspection on your manifests, tooling, etc. ##### Make sure there are no storedVersions on v1alpha1 for `externalsecrets`, `clusterexternalsecrets`, `secretstores` and `clustersecretstores` crds: Run the following command: kubectl get crd \ externalsecrets.external-secrets.io\ secretstores.external-secrets.io\ clustersecretstores.external-secrets.io\ clusterexternalsecrets.external-secrets.io\ -o jsonpath='{.items[*].status.storedVersions[?(@&#8203;=="valpha1")]}' | \ grep -q v1alpha1 && echo "NOT SAFE! REMOVE v1alpha1 FROM YOUR STORED VERSIONS" || echo "Safe to Continue" If that command returns not safe, remove v1alpha1 from your stored versions. Make sure this status is persisted after you verify these commands. kubectl patch --subresource=status crd externalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd secretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd clusterexternalsecrets.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' kubectl patch --subresource=status crd clustersecretstores.external-secrets.io --type=json -p='[{"op": "replace", "path": "/status/storedVersions", "value": ["v1", "v1beta1"]}]' #### Upgrading ##### CRDs as part of external-secrets installation If you're installing external-secrets CRDs with helm (`installCRDs=true` - the default), all you need to do is helm repo update helm upgrade <your_app_name> external-secrets/external-secrets --version 0.16.1 The same goes if you're using argocd or flux and managing crds directly with helm. The above should just work. ##### CRDs installed separately If CRDs are installed separately, the first step you need to do is bump the crds: kubectl apply -f https://raw.githubusercontent.com/external-secrets/external-secrets/v0.16.1/deploy/crds/bundle.yaml Verify no error occurs. After that, you can freely migrate external-secrets to `v0.16.1`. #### Troubleshooting ##### conversion webhook for external-secrets.io/v1, Kind=ExternalSecret failed: the server could not find the requested resource Root cause: the CRD installation process failed. Double check your CRD installation process finished successfully ##### spec.conversion.webhookClientConfig: Forbidden: should not be set when strategy is not set to Webhook Use `0.16.1` as opposed to `0.16.0` on your installation path. That should be fixed on this release ##### My issue is not here What do I do? Add a message to https://github.com/external-secrets/external-secrets/issues/4662 ### BREAKING CHANGES This release introduces quite a few breaking changes, including: - Removal of Conversion Webhooks and `SecretStore/v1alpha1`, `ExternalSecret/v1alpha1` and their cluster counterparts - Promotion of `ExternalSecret/v1` and `SecretStore/v1` and their cluster counterparts - Removal of `v1` templating engine - Removal of `ValueMaps` from Fake Secret Store if you have any issues during your upgrade, please check https://github.com/external-secrets/external-secrets/issues/4662 #### What's Changed - chore: bump 0.15.1 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4599 - chore(deps): bump distroless/static from `95ea148` to `3d0f463` by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4602 - chore(deps): bump actions/setup-python from 5.4.0 to 5.5.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4603 - chore(deps): bump crazy-max/ghaction-import-gpg from 6.2.0 to 6.3.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4605 - chore(deps): bump goreleaser/goreleaser-action from 6.2.1 to 6.3.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4606 - chore(deps): bump github/codeql-action from 3.28.12 to 3.28.13 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4607 - chore(deps): bump mkdocs-material from 9.6.9 to 9.6.10 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4608 - remove days from refreshInterval docs by [@&#8203;lmcewen9](https://github.com/lmcewen9) in https://github.com/external-secrets/external-secrets/pull/4601 - feat: Add AWSProvider.prefix to aws secrets manager by [@&#8203;justinwalz](https://github.com/justinwalz) in https://github.com/external-secrets/external-secrets/pull/4612 - feat(aws): support for aws tags by [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) in https://github.com/external-secrets/external-secrets/pull/4538 - docs: remove OLM installation and release docs by [@&#8203;Skarlso](https://github.com/Skarlso) in https://github.com/external-secrets/external-secrets/pull/4617 - chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in https://github.com/external-secrets/external-secrets/pull/4609 - chore(deps): bump golang from 1.24.1 to 1.24.2 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4618 - chore(deps): bump termcolor from 2.5.0 to 3.0.1 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4619 - chore(deps): bump mkdocs-material from 9.6.10 to 9.6.11 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4620 - chore(deps): bump golang from 1.24.1-bookworm to 1.24.2-bookworm in /e2e by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4621 - fix(gcp): makes workload identity parameters optional by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4622 - chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in https://github.com/external-secrets/external-secrets/pull/4624 - feat: check-diff on update deps by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4632 - docs: fix pento website url in the docs by [@&#8203;pragmaticivan](https://github.com/pragmaticivan) in https://github.com/external-secrets/external-secrets/pull/4639 - Support annotations on ValidatingWebhookConfigurations in order to su… by [@&#8203;davidkarlsen](https://github.com/davidkarlsen) in https://github.com/external-secrets/external-secrets/pull/4638 - fix: controller-options by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4637 - fix: failure on github deprecation use of status checks by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4640 - fix: replace error check with ok check by [@&#8203;iurisevero](https://github.com/iurisevero) in https://github.com/external-secrets/external-secrets/pull/4636 - feat: ​add refreshPolicy field to ExternalSecret for enhanced synchronization control​ by [@&#8203;Sn0rt](https://github.com/Sn0rt) in https://github.com/external-secrets/external-secrets/pull/4594 - fix: enhancing security for new workflow by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4641 - chore(deps): bump golang from `75e6700` to `00eccd4` in /e2e by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4644 - chore(deps): bump golang from `7772cb5` to `7772cb5` by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4649 - chore(deps): bump github/codeql-action from 3.28.13 to 3.28.15 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4645 - chore(deps): bump markdown from 3.7 to 3.8 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4646 - chore(deps): bump urllib3 from 2.3.0 to 2.4.0 in /hack/api-docs by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/external-secrets/external-secrets/pull/4647 - chore: update dependencies by [@&#8203;eso-service-account-app](https://github.com/eso-service-account-app) in https://github.com/external-secrets/external-secrets/pull/4651 - chore: bump go to 1.24.2 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4652 - chore: promote v1 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4635 - fix: revert main to 0.15.1 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4657 - fix: restore 0.16.0 by [@&#8203;gusfcarvalho](https://github.com/gusfcarvalho) in https://github.com/external-secrets/external-secrets/pull/4659 #### New Contributors - [@&#8203;lmcewen9](https://github.com/lmcewen9) made their first contribution in https://github.com/external-secrets/external-secrets/pull/4601 - [@&#8203;justinwalz](https://github.com/justinwalz) made their first contribution in https://github.com/external-secrets/external-secrets/pull/4612 - [@&#8203;ivankatliarchuk](https://github.com/ivankatliarchuk) made their first contribution in https://github.com/external-secrets/external-secrets/pull/4538 - [@&#8203;pragmaticivan](https://github.com/pragmaticivan) made their first contribution in https://github.com/external-secrets/external-secrets/pull/4639 - [@&#8203;davidkarlsen](https://github.com/davidkarlsen) made their first contribution in https://github.com/external-secrets/external-secrets/pull/4638 **Full Changelog**: https://github.com/external-secrets/external-secrets/compare/v0.15.1...v0.16.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* */1 * * *" in timezone US/Central, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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 this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTEuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIxMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJjaGFydCJdfQ==-->
renovate-bot force-pushed renovate/external-secrets-0.x from a2d7e104b1 to 8ac3db50b4 2025-04-15 22:02:00 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 8ac3db50b4 to 9463e7eb66 2025-04-16 04:30:52 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 9463e7eb66 to 033b68684c 2025-04-16 05:30:43 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 033b68684c to 046e28af69 2025-04-17 07:01:37 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 7d81441173 to a38f83e98a 2025-04-17 09:01:10 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from a38f83e98a to 3a224faff9 2025-04-17 11:30:38 +00:00 Compare
renovate-bot changed title from Update Helm release external-secrets to v0.16.0 to Update Helm release external-secrets to v0.16.1 2025-04-17 11:30:40 +00:00
renovate-bot force-pushed renovate/external-secrets-0.x from b210530d97 to 8113692769 2025-04-17 21:01:55 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 8113692769 to ba30b7796b 2025-04-17 22:30:43 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from ba30b7796b to 18423c3d34 2025-04-18 01:00:48 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 18423c3d34 to f14f5768e1 2025-04-18 01:30:58 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from f14f5768e1 to 676a87bd0e 2025-04-18 19:30:56 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 676a87bd0e to e742a1e97f 2025-04-19 16:31:31 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from e742a1e97f to 48b11c4363 2025-04-19 17:31:19 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 48b11c4363 to 67b31ffbe3 2025-04-20 03:01:27 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 67b31ffbe3 to e682fa20cc 2025-04-20 17:01:16 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from e682fa20cc to 2f34236887 2025-04-21 09:30:57 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 2f34236887 to 211a1b7a6f 2025-04-22 11:02:05 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 211a1b7a6f to b5ef6b9eb9 2025-04-22 11:32:04 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from b5ef6b9eb9 to 53174de8cb 2025-04-22 12:01:33 +00:00 Compare
renovate-bot force-pushed renovate/external-secrets-0.x from 53174de8cb to a644296fe4 2025-04-22 12:31:48 +00:00 Compare
renovate-bot changed title from Update Helm release external-secrets to v0.16.1 to Update Helm release external-secrets to v0.16.1 - autoclosed 2025-04-23 01:31:25 +00:00
renovate-bot closed this pull request 2025-04-23 01:31:25 +00:00
All checks were successful
renovate/stability-days Updates have met minimum release age requirement
lint-and-test-charts / lint-test (pull_request) Successful in 13s

Pull request closed

Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: alexlebens/infrastructure#130
No description provided.