Skip to content

Commit

Permalink
Merge pull request #3680 from brendandburns/automated-generate-fbd1cb18
Browse files Browse the repository at this point in the history
Regenerate for 1.30, fix patches
  • Loading branch information
k8s-ci-robot authored Oct 3, 2024
2 parents 8711618 + b552ede commit 9197d0b
Show file tree
Hide file tree
Showing 717 changed files with 14,758 additions and 17,276 deletions.
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

0 comments on commit 9197d0b

Please sign in to comment.