Skip to content
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

Regenerate for 1.30, fix patches #3680

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,6 @@ private void validatePods(List<V1Pod> pods) throws KubectlException {
for (V1Pod pod : pods) {
if (pod.getMetadata().getOwnerReferences() == null) continue;

if (!force && pod.getMetadata().getOwnerReferences().size() == 0) {
throw new KubectlException("Pods unmanaged by a controller are present on the node");
}
// Throw exception if there are daemon set pods and ignore daemon set is false
if (!ignoreDaemonSets) {
for (V1OwnerReference ref : pod.getMetadata().getOwnerReferences()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ void kubectlDelete() throws KubectlException, ApiException {
kubectlDelete.namespace("foo").name("bar");
DeleteOptions deleteOptions = new DeleteOptions();
deleteOptions.setPropagationPolicy("Foreground");
deleteOptions.setDryRun(null);
kubectlDelete.deleteOptions(deleteOptions);
kubectlDelete.execute();
apiServer.verify(
Expand Down
6 changes: 3 additions & 3 deletions kubernetes/.github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8' ]
java: [ 17, 21 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/.openapi-generator/COMMIT
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Requested Commit/Tag : v6.6.0
Actual Commit : 7f8b853f502d9039c9a0aac2614ce92871e895ed
Requested Commit/Tag : v7.6.0
Actual Commit : ab7d0cb74f6ef95bdaeafd327bbdb5d54f819175
2 changes: 1 addition & 1 deletion kubernetes/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.0
7.6.0
2 changes: 1 addition & 1 deletion kubernetes/.openapi-generator/swagger.json-default.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
d4cf964586286f87943c945f2bdce2e177ff733dc7431b40cc7c3c6982ee3c60
1c81e5babf0c4a980f711a4272c350d0b657df2666a570aca99c255314d67139
Loading
Loading