Skip to content

Commit e63ff54

Browse files
authored
Merge pull request #1178 from Vlatombe/JENKINS-68371
2 parents 7773049 + d1e9545 commit e63ff54

File tree

4 files changed

+32
-15
lines changed

4 files changed

+32
-15
lines changed

src/main/java/org/csanchez/jenkins/plugins/kubernetes/KubernetesCloud.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,9 @@ public Collection<NodeProvisioner.PlannedNode> provision(@NonNull final Cloud.Cl
532532
LOGGER.log(Level.FINE, "Template for label \"{0}\": {1}", new Object[]{label, podTemplate.getName()});
533533
// check overall concurrency limit using the default label(s) on all templates
534534
int numExecutors = 1;
535+
PodTemplate unwrappedTemplate = getUnwrappedTemplate(podTemplate);
535536
while (toBeProvisioned > 0 && KubernetesProvisioningLimits.get().register(this, podTemplate, numExecutors)) {
536-
plannedNodes.add(PlannedNodeBuilderFactory.createInstance().cloud(this).template(podTemplate).label(label).numExecutors(1).build());
537+
plannedNodes.add(PlannedNodeBuilderFactory.createInstance().cloud(this).template(unwrappedTemplate).label(label).numExecutors(1).build());
537538
toBeProvisioned--;
538539
}
539540
if (!plannedNodes.isEmpty()) {

src/main/java/org/csanchez/jenkins/plugins/kubernetes/PodTemplate.java

+11
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ protected static MessageDigest getLabelDigestFunction() {
8585

8686
private String id;
8787

88+
private transient boolean unwrapped;
89+
8890
private String inheritFrom;
8991

9092
private String name;
@@ -924,6 +926,14 @@ public void setShowRawYaml(boolean showRawYaml) {
924926
this.showRawYaml = Boolean.valueOf(showRawYaml);
925927
}
926928

929+
void setUnwrapped(boolean unwrapped) {
930+
this.unwrapped = unwrapped;
931+
}
932+
933+
boolean isUnwrapped() {
934+
return unwrapped;
935+
}
936+
927937
private String getContainersDescriptionForLogging() {
928938
List<ContainerTemplate> containers = getContainers();
929939
StringBuilder sb = new StringBuilder();
@@ -1052,6 +1062,7 @@ public String toString() {
10521062
(imagePullSecrets == null || imagePullSecrets.isEmpty() ? "" : ", imagePullSecrets=" + imagePullSecrets) +
10531063
(nodeProperties == null || nodeProperties.isEmpty() ? "" : ", nodeProperties=" + nodeProperties) +
10541064
(yamls == null || yamls.isEmpty() ? "" : ", yamls=" + yamls) +
1065+
(!unwrapped ? "" : ", unwrapped=" + unwrapped) +
10551066
'}';
10561067
}
10571068
}

src/main/java/org/csanchez/jenkins/plugins/kubernetes/PodTemplateUtils.java

+18-13
Original file line numberDiff line numberDiff line change
@@ -486,33 +486,38 @@ static PodTemplate unwrap(PodTemplate template, String defaultProviderTemplate,
486486
return null;
487487
}
488488

489-
StringBuilder sb = new StringBuilder();
490-
if (!isNullOrEmpty(defaultProviderTemplate)) {
491-
sb.append(defaultProviderTemplate).append(" ");
492-
493-
}
494-
if (!isNullOrEmpty(template.getInheritFrom())) {
495-
sb.append(template.getInheritFrom()).append(" ");
496-
}
497-
String inheritFrom = sb.toString();
498-
499-
if (isNullOrEmpty(inheritFrom)) {
489+
List<String> inheritFrom = computedInheritFrom(template, defaultProviderTemplate);
490+
if (inheritFrom.isEmpty()) {
500491
return template;
501492
} else {
502-
String[] parentNames = inheritFrom.split("[ ]+");
503493
PodTemplate parent = null;
504-
for (String name : parentNames) {
494+
for (String name : inheritFrom) {
505495
PodTemplate next = getTemplateByName(name, allTemplates);
506496
if (next != null) {
507497
parent = combine(parent, unwrap(next, allTemplates));
508498
}
509499
}
510500
PodTemplate combined = combine(parent, template);
501+
combined.setUnwrapped(true);
511502
LOGGER.log(Level.FINEST, "Combined parent + template is {0}", combined);
512503
return combined;
513504
}
514505
}
515506

507+
private static List<String> computedInheritFrom(PodTemplate template, String defaultProviderTemplate) {
508+
List<String> hierarchy = new ArrayList<>();
509+
if (!isNullOrEmpty(defaultProviderTemplate)) {
510+
hierarchy.add(defaultProviderTemplate);
511+
}
512+
if (!isNullOrEmpty(template.getInheritFrom())) {
513+
String[] split = template.getInheritFrom().split(" +");
514+
for (String name : split) {
515+
hierarchy.add(name);
516+
}
517+
}
518+
return Collections.unmodifiableList(hierarchy);
519+
}
520+
516521
/**
517522
* Unwraps the hierarchy of the PodTemplate.
518523
*

src/main/java/org/csanchez/jenkins/plugins/kubernetes/StandardPlannedNodeBuilder.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public NodeProvisioner.PlannedNode build() {
2020
try {
2121
KubernetesSlave agent = KubernetesSlave
2222
.builder()
23-
.podTemplate(cloud.getUnwrappedTemplate(t))
23+
.podTemplate(t.isUnwrapped() ? t : cloud.getUnwrappedTemplate(t))
2424
.cloud(cloud)
2525
.build();
2626
displayName = agent.getDisplayName();

0 commit comments

Comments
 (0)