-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1451 from jglick/DirectConnectionTest
Added `DirectConnectionTest`, downgrading agent image
- Loading branch information
Showing
5 changed files
with
50 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/main/resources/org/csanchez/jenkins/plugins/kubernetes/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
FROM jenkins/inbound-agent:3180.v3dd999d24861-1 | ||
FROM jenkins/inbound-agent:3174.v2c9e67f8f9df-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/test/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/DirectConnectionTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2023 CloudBees, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.csanchez.jenkins.plugins.kubernetes.pipeline; | ||
|
||
import java.util.logging.Level; | ||
import org.csanchez.jenkins.plugins.kubernetes.KubernetesTestUtil; | ||
import org.csanchez.jenkins.plugins.kubernetes.PodTemplateBuilder; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
public final class DirectConnectionTest extends AbstractKubernetesPipelineTest { | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
KubernetesTestUtil.deletePods(cloud.connect(), KubernetesTestUtil.getLabels(cloud, this, name), false); | ||
cloud.setDirectConnection(true); | ||
logs.record(PodTemplateBuilder.class, Level.FINEST); | ||
} | ||
|
||
@Test | ||
public void directConnectionAgent() throws Exception { | ||
r.assertBuildStatusSuccess(r.waitForCompletion(createJobThenScheduleRun())); | ||
} | ||
|
||
} |
5 changes: 5 additions & 0 deletions
5
...t/resources/org/csanchez/jenkins/plugins/kubernetes/pipeline/directConnectionAgent.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
podTemplate { | ||
node(POD_LABEL) { | ||
sh 'echo OK running' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters