{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":117377862,"defaultBranch":"master","name":"gardener","ownerLogin":"gardener","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-01-13T20:57:47.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/33683699?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716826410.0","currentOid":""},"activityList":{"items":[{"before":"b4f429dbffe73988d3f23ff8b384dd5cf9cf4b7f","after":"a7ea45583393a22cba3f06d2ac1b0aabd8b16733","ref":"refs/heads/release-v1.95","pushedAt":"2024-05-27T16:14:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gardener-robot-ci-2","name":"Gardener CI Robot 2","path":"/gardener-robot-ci-2","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/52166830?s=80&v=4"},"commit":{"message":"Prepare next Development Cycle v1.95.3-dev","shortMessageHtmlLink":"Prepare next Development Cycle v1.95.3-dev"}},{"before":"e07c0250ed27987c5910785d4c71864349c164fe","after":"b4f429dbffe73988d3f23ff8b384dd5cf9cf4b7f","ref":"refs/heads/release-v1.95","pushedAt":"2024-05-27T16:13:28.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gardener-robot-ci-3","name":"Gardener CI Robot 3","path":"/gardener-robot-ci-3","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/55584046?s=80&v=4"},"commit":{"message":"Release v1.95.2","shortMessageHtmlLink":"Release v1.95.2"}},{"before":"b48c204dd19180ad3ce14d886f72764033c4db04","after":"9328ffc07c9b998071397e01c999880db280b4db","ref":"refs/heads/master","pushedAt":"2024-05-27T14:06:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"Include `provider-local`s image vector for Renovate updates (#9852)\n\n* Include `provider-local`s image vector for Renovate updates\n\n* Use upstream images of `local-path-provisioner` and `local-path-helper`\n\n* Add detection of prow like images tags (e.g. `v20240213-749005b2`)\n\n---------\n\nCo-authored-by: oliver-goetz ","shortMessageHtmlLink":"Include provider-locals image vector for Renovate updates (#9852)"}},{"before":"dfae57820e611d1a33f62c0c0f43e731a048163f","after":"b48c204dd19180ad3ce14d886f72764033c4db04","ref":"refs/heads/master","pushedAt":"2024-05-27T11:24:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"Rework seed alerts to consider all possible conditions (#9750)\n\n* Revisit topology for current alerts\n\n- Topology `shoot` to refer a seed is incorrect.\n- Change topology from `garden` to `seed` for\n those alerts checking seed conditions.\n\n* Remove unnecessary labels `is_compliant` and `has_user_errors`\n\nWe do not want to suppress alerts on seeds that are managed by the\nGardener team, even if the seeds are not compliant or the errors are\nuser errors.\n\n* Make sure `max_over_time` is used in the alerts in case of flapping\n\nWithout it, flapping conditions would probably go undetected because\nthe alerts would be reset each time.\n\nFor example, when the seed is reconciling its artifacts, some of its\nmanaged resources can enter the progressing state for a brief period,\nand to avoid alerts from being restarted, the `max_over_time` function\nis now introduced to smooth out this behaviour. This is combined with\nthe subquery syntax [1] to query over the last minutes only.\n\nThis change is also reducing the time before firing an alert in the `for`\nentry from 30m to 10m for some alerts to alert more aggressively if any of\nthose conditions fail. An exception is the alert `SeedAPIServerUnavailable`,\nwhich was already firing after 2m, but now changed to 3m to preserve the\nsame behaviour after the change introducing `max_over_time` to smooth\nout possible flappings.\n\n[1] https://prometheus.io/docs/prometheus/latest/querying/basics/#subquery\n\n* Use `last_over_time` instead of `max_over_time`\n\nThe usage of a `_over_time` function is only required to\ncheck if there is data within the queried time window that triggers\nthe alert. If the query return data, then the value is always true.\nOtherwise, the query returns nothing.\n\nTherefore, it is meaningless to calculate the maximum over a set\nof \"trues\". Instead, using `last_over_time` is a better approach\nto check if the query returned data.\n\n* Make sure all seed alerts are not muted on the weekends\n\n`mute_on_weekend` should be used for shoot alerts that are\ncustomer issues and for which the Gardener team can't really\nhelp. However, the Gardener team has full control of the\nseeds so alerts on those should always be reacted upon: if\nseed are having issues, then shoots can't be correctly managed.\n\n* Fix description for the APIServerAvailable alert\n\nAdd the list of active alerts as in other alerts by `garden_shoot_condition`\n\n* Add new alerts to cover all possible seed conditions\n\n* Homogenize summary and description for seed condition alerts\n\n- Use common text for all alerts regarding seed conditions\n- Fix description for the APIServerAvailable alert by adding\n the list of active alerts as in other alerts by `garden_shoot_condition`\n\n* Add promtool tests for new seed condition alerts\n\nThe different condition states are mapped to numbers by the\n`gardener-metrics-exporter`:\n\n```\n2: Progressing\n1: True\n0: False\n-1: Unknown\n```\n\n* Use one single alert for all conditions: Remove previous alerts\n\nThis commit and the next discard most of previous work. The fundamental\nchange is that all seed condition are grouped into one alert only,\ninstead of having a specific alert for condition.\n\nFor the sake of change diff, this change is split in two commits: this\none removes previous alerts, and the next adds the new single alert.\n\n* Use one single alert for all conditions: Add new alert\n\nThis and previous commit discard most of previous work. The fundamental\nchange is that all seed condition are now grouped into one alert only,\ninstead of having a specific alert for condition.\n\nFor the sake of change diff, this change is split in two commits: the\nprevious one removed previous alerts, and this adds the new single alert.\n\n* Add unit test for multiple shoots and alerts\n\nThis unit test shows that, if two different seeds, have failing\nconditions then two different alerts pop up as well.\n\n* Mute new alert on seed conditions\n\nMute this alert on weekends as we gain experience on how noisy\nit will be on live and canary. The goal, though, is that we\neventually unmute it.\n\n* Alert after 10 minutes instead of 6 minutes\n\nAfter testing this change on dev, we found alerting becomes\na bit too noisy so we choose to increase the for clause up\nto 10 minutes again.\n\n* Remove empty line at the end of the alert description\n\nFor better alert formatting, alert descriptions are not supposed to\ncontain an empty line at the very end.\n\n* [review] Address review comments\n\n- Unroll the time series in the tests so it's simpler.\n- Add comment on how conditions states are mapped into numbers.","shortMessageHtmlLink":"Rework seed alerts to consider all possible conditions (#9750)"}},{"before":"efc7a585fe22188ef077aa95961b06b6d93534fe","after":"dfae57820e611d1a33f62c0c0f43e731a048163f","ref":"refs/heads/master","pushedAt":"2024-05-27T09:37:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"[GEP-24] Manage Gardener Discovery Server via Gardener Operator (#9746)\n\n* Add DiscoveryServer to Garden API\n\n* Add gardener-discovery-server to imagevector\n\n* Introduce Gardener Discovery Server component\n\n* ServiceMonitor and BBX scrape config\n\n* Mention discovery server in prio classes\n\n* Add documentation\n\n* Add enablement documentation\n\n* Fix linter warnings\n\n* Rename http port to https\n\n* Address some of PR review comments\n\n* Address PR review\n\n* Fix build\n\n* Unexport some constants\n\n* Reuse runtime's first ingress domain for gardener discovery server\n\n* Use release image for Gardener Discovery Server","shortMessageHtmlLink":"[GEP-24] Manage Gardener Discovery Server via Gardener Operator (#9746)"}},{"before":"932b486d8dadd96dc9012b517e9f1b256175b76d","after":null,"ref":"refs/heads/renovate/golangci-golangci-lint-1.x","pushedAt":"2024-05-27T07:14:40.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"58c47f94456d863c4b68191d4d618b84a7e04a37","after":"efc7a585fe22188ef077aa95961b06b6d93534fe","ref":"refs/heads/master","pushedAt":"2024-05-27T07:14:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"chore(deps): update dependency golangci/golangci-lint to v1.59.0 (#9850)\n\n* chore(deps): update dependency golangci/golangci-lint to v1.59.0\n\n* Address new findings\n\n---------\n\nCo-authored-by: Rafael Franzke ","shortMessageHtmlLink":"chore(deps): update dependency golangci/golangci-lint to v1.59.0 (#9850)"}},{"before":"bdfd68a30602f15ffa0b3e81dadd3d112c215f35","after":"58c47f94456d863c4b68191d4d618b84a7e04a37","ref":"refs/heads/master","pushedAt":"2024-05-26T22:00:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"Add `**Release note:**` heading and a `NONE` default release note (#9839)","shortMessageHtmlLink":"Add **Release note:** heading and a NONE default release note (#9839"}},{"before":"1df9ab6c4b5822de3a0a17efb6602aa99ac022b4","after":null,"ref":"refs/heads/renovate/ko-build-ko-0.15.x","pushedAt":"2024-05-26T19:48:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"5485487489b0df608413767d68560c0014c0be21","after":"bdfd68a30602f15ffa0b3e81dadd3d112c215f35","ref":"refs/heads/master","pushedAt":"2024-05-26T19:48:38.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"chore(deps): update dependency ko-build/ko to v0.15.4 (#9851)","shortMessageHtmlLink":"chore(deps): update dependency ko-build/ko to v0.15.4 (#9851)"}},{"before":"14882de6f65211403b663f25bc9a69a8905d9ea6","after":"932b486d8dadd96dc9012b517e9f1b256175b76d","ref":"refs/heads/renovate/golangci-golangci-lint-1.x","pushedAt":"2024-05-26T19:12:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rfranzke","name":"Rafael Franzke","path":"/rfranzke","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/19169361?s=80&v=4"},"commit":{"message":"Address new findings","shortMessageHtmlLink":"Address new findings"}},{"before":"fdfde7428aefc16546d7dffa1e697741383706f8","after":"14882de6f65211403b663f25bc9a69a8905d9ea6","ref":"refs/heads/renovate/golangci-golangci-lint-1.x","pushedAt":"2024-05-26T18:57:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"gardener-ci-robot","name":"Gardener Prow Robot","path":"/gardener-ci-robot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/95282030?s=80&v=4"},"commit":{"message":"chore(deps): update dependency golangci/golangci-lint to v1.59.0","shortMessageHtmlLink":"chore(deps): update dependency golangci/golangci-lint to v1.59.0"}},{"before":null,"after":"1df9ab6c4b5822de3a0a17efb6602aa99ac022b4","ref":"refs/heads/renovate/ko-build-ko-0.15.x","pushedAt":"2024-05-26T18:57:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gardener-ci-robot","name":"Gardener Prow Robot","path":"/gardener-ci-robot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/95282030?s=80&v=4"},"commit":{"message":"chore(deps): update dependency ko-build/ko to v0.15.4","shortMessageHtmlLink":"chore(deps): update dependency ko-build/ko to v0.15.4"}},{"before":"b95d2b2c228575250189b3ccc968e5eecca3587f","after":"5485487489b0df608413767d68560c0014c0be21","ref":"refs/heads/master","pushedAt":"2024-05-26T18:52:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"Move `machine-controller-manager-provider-local` into `gardener/gardener` (#9782)\n\n* Fix logcheck for logr look-alike package-level funcs\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Move `machine-controller-manager-provider-local`\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Add ko as a local tool\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Use entrypoint of mcm sidecar image\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Build provider-local-node image in skaffold\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Build mcm provider-local image in skaffold\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Update dependencies of custom builders in skaffold\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Remove obsolete image\n\nImage is always provided by the kind cluster config yaml.\nHence, this `--image` flag never had any effect because it was always overwritten.\n\nCo-Authored-By: Rafael Franzke \nCo-Authored-By: Marcel Boehm \n\n* Go back to simplified image names\n\n* Doc nits\n\n* Go back to `0.0.0` for local node image version\n\n* Partially revert https://github.com/gardener/machine-controller-manager-provider-local/pull/42\n\nThis code can only be removed with https://github.com/gardener/gardener/pull/9752\n\n---------\n\nCo-authored-by: Rafael Franzke \nCo-authored-by: Marcel Boehm ","shortMessageHtmlLink":"Move machine-controller-manager-provider-local into `gardener/garde…"}},{"before":null,"after":"fdfde7428aefc16546d7dffa1e697741383706f8","ref":"refs/heads/renovate/golangci-golangci-lint-1.x","pushedAt":"2024-05-26T18:46:38.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gardener-ci-robot","name":"Gardener Prow Robot","path":"/gardener-ci-robot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/95282030?s=80&v=4"},"commit":{"message":"chore(deps): update dependency golangci/golangci-lint to v1.59.0","shortMessageHtmlLink":"chore(deps): update dependency golangci/golangci-lint to v1.59.0"}},{"before":"a7fbf2e59397de9c97e18ca2950a2dc4c3b9ca59","after":null,"ref":"refs/heads/renovate/golang.org-x-exp-digest","pushedAt":"2024-05-25T08:46:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"d4895cfd79b6eae0aa4f77c4e18722babee0ee4d","after":"b95d2b2c228575250189b3ccc968e5eecca3587f","ref":"refs/heads/master","pushedAt":"2024-05-25T08:46:37.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"fix(deps): update golang.org/x/exp digest to 4c93da0 (#9849)","shortMessageHtmlLink":"fix(deps): update golang.org/x/exp digest to 4c93da0 (#9849)"}},{"before":null,"after":"a7fbf2e59397de9c97e18ca2950a2dc4c3b9ca59","ref":"refs/heads/renovate/golang.org-x-exp-digest","pushedAt":"2024-05-25T05:36:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gardener-ci-robot","name":"Gardener Prow Robot","path":"/gardener-ci-robot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/95282030?s=80&v=4"},"commit":{"message":"fix(deps): update golang.org/x/exp digest to 4c93da0","shortMessageHtmlLink":"fix(deps): update golang.org/x/exp digest to 4c93da0"}},{"before":"875d53de12a9059dddea803f38b0fb6f2806bb4c","after":"d4895cfd79b6eae0aa4f77c4e18722babee0ee4d","ref":"refs/heads/master","pushedAt":"2024-05-24T19:12:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"Improve monitoring documentation (#9758)\n\n* Rename Prometheus to cache Prometheus\n\n* Unify usage of capitalization\n\n- \"seed\", \"shoot\" and \"aggregated\" are not capitalized unless required\n by title case\n- \"Prometheus\" is always capitalized as it is a name.\n\n* Improve aggregate Prometheus documentation\n\n* Improve cache Prometheus documentation\n\n* Improve seed Prometheus documentation\n\n* Revisit monitoring image\n\n- Rename prometheus to cache-prometheus.\n- Exported with embedded scene to allow imports into\n excalidraw for further modifications.","shortMessageHtmlLink":"Improve monitoring documentation (#9758)"}},{"before":"364e9f9324249364a768f5d3470ebfc7dd083a4d","after":null,"ref":"refs/heads/renovate/github.com-onsi-ginkgo-v2-2.x","pushedAt":"2024-05-24T15:27:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"44e5d3ad6060633ee14a1013306e5f1191d2b523","after":"875d53de12a9059dddea803f38b0fb6f2806bb4c","ref":"refs/heads/master","pushedAt":"2024-05-24T15:27:36.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0 (#9847)","shortMessageHtmlLink":"fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0 (#9847)"}},{"before":null,"after":"364e9f9324249364a768f5d3470ebfc7dd083a4d","ref":"refs/heads/renovate/github.com-onsi-ginkgo-v2-2.x","pushedAt":"2024-05-24T14:13:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gardener-ci-robot","name":"Gardener Prow Robot","path":"/gardener-ci-robot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/95282030?s=80&v=4"},"commit":{"message":"fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0","shortMessageHtmlLink":"fix(deps): update module github.com/onsi/ginkgo/v2 to v2.19.0"}},{"before":"cc2b0a45607332ff39a5536d5f2f12bc71d53d77","after":null,"ref":"refs/heads/renovate/github.com-gardener-cert-management-0.14.x","pushedAt":"2024-05-24T11:14:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"c86b2c017b3950bf2ae862ec7f190d7ce59a876f","after":"44e5d3ad6060633ee14a1013306e5f1191d2b523","ref":"refs/heads/master","pushedAt":"2024-05-24T11:14:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"fix(deps): update module github.com/gardener/cert-management to v0.14.3 (#9838)","shortMessageHtmlLink":"fix(deps): update module github.com/gardener/cert-management to v0.14…"}},{"before":"f649461925dca634cdbcd97430aa1ba050045b77","after":"99f8e9fd86b10f59f8bd15b3ed55226e5dc07fa5","ref":"refs/heads/release-v1.93","pushedAt":"2024-05-24T10:57:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"PVC migration: Remove `.spec.claimRef` only after new PVC got created (#9842)\n\nCo-authored-by: Rafael Franzke ","shortMessageHtmlLink":"PVC migration: Remove .spec.claimRef only after new PVC got created ("}},{"before":"c26359c66806cda234cc54dbcec45c0fc1fd1018","after":"e07c0250ed27987c5910785d4c71864349c164fe","ref":"refs/heads/release-v1.95","pushedAt":"2024-05-24T10:05:04.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"PVC migration: Remove `.spec.claimRef` only after new PVC got created (#9840)\n\nCo-authored-by: Rafael Franzke ","shortMessageHtmlLink":"PVC migration: Remove .spec.claimRef only after new PVC got created ("}},{"before":"8a613ed2630681b5662181f0c3749ec0787ef133","after":"50726550656f4e41d86adb110a33182929c41bf0","ref":"refs/heads/release-v1.94","pushedAt":"2024-05-24T10:03:05.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"PVC migration: Remove `.spec.claimRef` only after new PVC got created (#9841)\n\nCo-authored-by: Rafael Franzke ","shortMessageHtmlLink":"PVC migration: Remove .spec.claimRef only after new PVC got created ("}},{"before":"63db4569a84fe2a7287be270be077478e23f56d7","after":null,"ref":"refs/heads/renovate/registry.k8s.io-pause-3.x","pushedAt":"2024-05-24T09:06:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"}},{"before":"cbf9bdde119b0ce2a804947f12f866a05744e1ea","after":"c86b2c017b3950bf2ae862ec7f190d7ce59a876f","ref":"refs/heads/master","pushedAt":"2024-05-24T09:06:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"chore(deps): update registry.k8s.io/pause docker tag to v3.10 (#9837)","shortMessageHtmlLink":"chore(deps): update registry.k8s.io/pause docker tag to v3.10 (#9837)"}},{"before":"6af6cca881d7a953ec3c9e5ccac7d0ae69fa5a79","after":"cbf9bdde119b0ce2a804947f12f866a05744e1ea","ref":"refs/heads/master","pushedAt":"2024-05-24T09:06:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gardener-prow[bot]","name":null,"path":"/apps/gardener-prow","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/154614?s=80&v=4"},"commit":{"message":"PVC migration: Remove `.spec.claimRef` only after new PVC got created (#9817)","shortMessageHtmlLink":"PVC migration: Remove .spec.claimRef only after new PVC got created ("}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEVRGnjAA","startCursor":null,"endCursor":null}},"title":"Activity · gardener/gardener"}