-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCPBUGS-39133: Add graceful shutdown flags #34
OCPBUGS-39133: Add graceful shutdown flags #34
Conversation
Bumps the gomod-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.14.0` | `2.15.0` | | [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.30.0` | `1.31.1` | | [k8s.io/api](https://github.com/kubernetes/api) | `0.29.0` | `0.29.1` | | [k8s.io/apiserver](https://github.com/kubernetes/apiserver) | `0.29.0` | `0.29.1` | | [k8s.io/klog/v2](https://github.com/kubernetes/klog) | `2.120.0` | `2.120.1` | | [k8s.io/metrics](https://github.com/kubernetes/metrics) | `0.29.0` | `0.29.1` | Updates `github.com/onsi/ginkgo/v2` from 2.14.0 to 2.15.0 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](onsi/ginkgo@v2.14.0...v2.15.0) Updates `github.com/onsi/gomega` from 1.30.0 to 1.31.1 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](onsi/gomega@v1.30.0...v1.31.1) Updates `k8s.io/api` from 0.29.0 to 0.29.1 - [Commits](kubernetes/api@v0.29.0...v0.29.1) Updates `k8s.io/apiserver` from 0.29.0 to 0.29.1 - [Commits](kubernetes/apiserver@v0.29.0...v0.29.1) Updates `k8s.io/klog/v2` from 2.120.0 to 2.120.1 - [Release notes](https://github.com/kubernetes/klog/releases) - [Changelog](https://github.com/kubernetes/klog/blob/main/RELEASE.md) - [Commits](kubernetes/klog@v2.120.0...v2.120.1) Updates `k8s.io/metrics` from 0.29.0 to 0.29.1 - [Commits](kubernetes/metrics@v0.29.0...v0.29.1) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod-dependencies - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gomod-dependencies - dependency-name: k8s.io/api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-dependencies - dependency-name: k8s.io/apiserver dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-dependencies - dependency-name: k8s.io/klog/v2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-dependencies - dependency-name: k8s.io/metrics dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gomod-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
…ot/go_modules/gomod-dependencies-125bb43b82 Bump the gomod-dependencies group with 6 updates
Signed-off-by: Steve Hipwell <[email protected]>
…rt-v3-12-0 feat(chart): Released v3.12.0 (v0.7.0)
Signed-off-by: Steve Hipwell <[email protected]>
…elease fix(chart): Fixed incorrect changelog version lookup
Bumps [action-stars/install-tool-from-github-release](https://github.com/action-stars/install-tool-from-github-release) from 0.2.1 to 0.2.2. - [Release notes](https://github.com/action-stars/install-tool-from-github-release/releases) - [Changelog](https://github.com/action-stars/install-tool-from-github-release/blob/main/CHANGELOG.md) - [Commits](action-stars/install-tool-from-github-release@b21a018...9019d0a) --- updated-dependencies: - dependency-name: action-stars/install-tool-from-github-release dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](helm/kind-action@dda0770...99576bf) --- updated-dependencies: - dependency-name: helm/kind-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
…ot/github_actions/helm/kind-action-1.9.0 Bump helm/kind-action from 1.8.0 to 1.9.0
…kind0.22.0 Update kind to use v0.22.0 version to support new kubernetes version
Bumps [mikefarah/yq](https://github.com/mikefarah/yq) from 4.40.5 to 4.42.1. - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@dd64899...9adde1a) --- updated-dependencies: - dependency-name: mikefarah/yq dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
…ot/github_actions/mikefarah/yq-4.42.1 Bump mikefarah/yq from 4.40.5 to 4.42.1
With the 1.27 Kubernetes upgrade, a new GetSingularName method needed to be implemented by the metrics rest.Storage. While doing it, we set a value for the singular name of the resources when it used to be empty. Due to that, the kube-apiserver stop guessing the resource name based on its Kind, which broken kubectl get PodMetrics/NodeMetrics. To fix that, we need to blank out the singular name of the resources, otherwise we will be stuck with the following commands: - kubectl get pod.metric - kubectl get node.metric Instead of the more commonly used: - kubectl get PodMetrics - kubectl get NodeMetrics Signed-off-by: Damien Grisonnet <[email protected]>
…name Fix kubectl get PodMetrics/NodeMetrics
…rlink Improve: Add hyperlink to Prometheus in README
…-alerts Improve README - Highlight content with distinctive styling
Bumps [mindsers/changelog-reader-action](https://github.com/mindsers/changelog-reader-action) from 2.2.2 to 2.2.3. - [Release notes](https://github.com/mindsers/changelog-reader-action/releases) - [Changelog](https://github.com/mindsers/changelog-reader-action/blob/master/CHANGELOG.md) - [Commits](mindsers/changelog-reader-action@b97ce03...32aa5b4) --- updated-dependencies: - dependency-name: mindsers/changelog-reader-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@de2c0eb...d99959e) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
…ot/github_actions/mindsers/changelog-reader-action-2.2.3 Bump mindsers/changelog-reader-action from 2.2.2 to 2.2.3
…ot/github_actions/action-stars/install-tool-from-github-release-0.2.2 Bump action-stars/install-tool-from-github-release from 0.2.1 to 0.2.2
…ot/github_actions/softprops/action-gh-release-2 Bump softprops/action-gh-release from 1 to 2
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@0a5c615...82c7e63) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Steve Hipwell <[email protected]>
…v0.7.1 chore(chart): Updated Helm chart for v0.7.1
Co-authored-by: Marek Siarkowicz <[email protected]>
Remove double negative in README.md
Wire server run options to flags.
Signed-off-by: Damien Grisonnet <[email protected]>
@dgrisonnet: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
/retitle OCPBUGS-39133: Add graceful shutdown flags |
@dgrisonnet: This pull request references Jira Issue OCPBUGS-39133, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/jira refresh |
@simonpasquier: This pull request references Jira Issue OCPBUGS-39133, which is invalid:
Comment In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/jira refresh |
@simonpasquier: This pull request references Jira Issue OCPBUGS-39133, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
Requesting review from QA contact: In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dgrisonnet, simonpasquier The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@dgrisonnet: Jira Issue OCPBUGS-39133: Some pull requests linked via external trackers have merged: The following pull requests linked via external trackers have not merged: These pull request must merge or be unlinked from the Jira bug in order for it to move to the next state. Once unlinked, request a bug refresh with Jira Issue OCPBUGS-39133 has not been moved to the MODIFIED state. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
/jira backport release-4.17 |
@simonpasquier: The following backport issues have been created:
Queuing cherrypicks to the requested branches to be created after this PR merges: In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
@openshift-ci-robot: Failed to get PR patch from GitHub. This PR will need to be manually cherrypicked. Error messagestatus code 406 not one of [200], body: {"message":"Sorry, the diff exceeded the maximum number of files (300). Consider using 'List pull requests files' API or locally cloning the repository instead.","errors":[{"resource":"PullRequest","field":"diff","code":"too_large"}],"documentation_url":"https://docs.github.com/rest/pulls/pulls#list-pull-requests-files","status":"406"}In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
[ART PR BUILD NOTIFIER] Distgit: ose-kube-metrics-server |
What this PR does / why we need it:
This PR brings kubernetes-sigs#1560 which is required by https://issues.redhat.com/browse/OCPBUGS-39133