-
Notifications
You must be signed in to change notification settings - Fork 1.3k
-Pktunnel
#2815
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
-Pktunnel
#2815
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -41,8 +41,6 @@ | |||||||||||
|
|
||||||||||||
| <properties> | ||||||||||||
| <changelist>999999-SNAPSHOT</changelist> | ||||||||||||
| <jenkins.host.address /> | ||||||||||||
| <slaveAgentPort /> | ||||||||||||
| <jenkins.baseline>2.504</jenkins.baseline> | ||||||||||||
| <jenkins.version>${jenkins.baseline}.3</jenkins.version> | ||||||||||||
| <no-test-jar>false</no-test-jar> | ||||||||||||
|
|
@@ -294,12 +292,7 @@ | |||||||||||
| <artifactId>maven-surefire-plugin</artifactId> | ||||||||||||
| <configuration> | ||||||||||||
| <systemPropertyVariables> | ||||||||||||
| <hudson.slaves.NodeProvisioner.initialDelay>0</hudson.slaves.NodeProvisioner.initialDelay> | ||||||||||||
| <hudson.slaves.NodeProvisioner.recurrencePeriod>3000</hudson.slaves.NodeProvisioner.recurrencePeriod> | ||||||||||||
| <org.jenkinsci.plugins.workflow.support.pickles.ExecutorPickle.timeoutForNodeMillis>60000</org.jenkinsci.plugins.workflow.support.pickles.ExecutorPickle.timeoutForNodeMillis> | ||||||||||||
| <!-- have pods connect to this address for Jenkins --> | ||||||||||||
| <jenkins.host.address>${jenkins.host.address}</jenkins.host.address> | ||||||||||||
| <slaveAgentPort>${slaveAgentPort}</slaveAgentPort> | ||||||||||||
| </systemPropertyVariables> | ||||||||||||
| </configuration> | ||||||||||||
| </plugin> | ||||||||||||
|
|
@@ -308,11 +301,6 @@ | |||||||||||
| <artifactId>maven-hpi-plugin</artifactId> | ||||||||||||
| <configuration> | ||||||||||||
| <systemProperties> | ||||||||||||
| <hudson.slaves.NodeProvisioner.initialDelay>0</hudson.slaves.NodeProvisioner.initialDelay> | ||||||||||||
| <hudson.slaves.NodeProvisioner.MARGIN>50</hudson.slaves.NodeProvisioner.MARGIN> | ||||||||||||
| <hudson.slaves.NodeProvisioner.MARGIN0>0.85</hudson.slaves.NodeProvisioner.MARGIN0> | ||||||||||||
|
Comment on lines
-311
to
-313
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto |
||||||||||||
| <jenkins.host.address>${jenkins.host.address}</jenkins.host.address> | ||||||||||||
| <port>${port}</port> | ||||||||||||
| <org.csanchez.jenkins.plugins.kubernetes.pipeline.PodTemplateStepExecution.verbose>true</org.csanchez.jenkins.plugins.kubernetes.pipeline.PodTemplateStepExecution.verbose> | ||||||||||||
| </systemProperties> | ||||||||||||
| </configuration> | ||||||||||||
|
|
@@ -388,6 +376,38 @@ | |||||||||||
| </plugins> | ||||||||||||
| </build> | ||||||||||||
| </profile> | ||||||||||||
| <profile> | ||||||||||||
| <!-- kubectl tunnel expose jenkins 8000:8000 8001:8001 --> | ||||||||||||
| <id>ktunnel</id> | ||||||||||||
| <build> | ||||||||||||
| <pluginManagement> | ||||||||||||
| <plugins> | ||||||||||||
| <plugin> | ||||||||||||
| <groupId>org.apache.maven.plugins</groupId> | ||||||||||||
| <artifactId>maven-surefire-plugin</artifactId> | ||||||||||||
| <configuration> | ||||||||||||
| <systemPropertyVariables> | ||||||||||||
| <jenkins.host.address>jenkins.default.svc.cluster.local</jenkins.host.address> | ||||||||||||
| <port>8000</port> | ||||||||||||
| <slaveAgentPort>8001</slaveAgentPort> | ||||||||||||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note inconsistency: kubernetes-plugin/src/test/java/org/csanchez/jenkins/plugins/kubernetes/KubernetesTestUtil.java Lines 137 to 141 in b59f230
|
||||||||||||
| </systemPropertyVariables> | ||||||||||||
| </configuration> | ||||||||||||
| </plugin> | ||||||||||||
| <plugin> | ||||||||||||
| <groupId>org.jenkins-ci.tools</groupId> | ||||||||||||
| <artifactId>maven-hpi-plugin</artifactId> | ||||||||||||
| <configuration> | ||||||||||||
| <defaultPort>8000</defaultPort> | ||||||||||||
| <systemProperties> | ||||||||||||
| <jenkins.host.address>jenkins.default.svc.cluster.local</jenkins.host.address> | ||||||||||||
| <jenkins.model.Jenkins.slaveAgentPort>8001</jenkins.model.Jenkins.slaveAgentPort> | ||||||||||||
| </systemProperties> | ||||||||||||
| </configuration> | ||||||||||||
| </plugin> | ||||||||||||
| </plugins> | ||||||||||||
| </pluginManagement> | ||||||||||||
| </build> | ||||||||||||
| </profile> | ||||||||||||
| </profiles> | ||||||||||||
|
|
||||||||||||
| </project> | ||||||||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should not be necessary as of #598.
History: f3c43b7 357355f (from #217) #898