File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/main/java/org/csanchez/jenkins/plugins/kubernetes Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -703,6 +703,7 @@ public List<PodTemplate> getTemplatesFor(@CheckForNull Label label) {
703
703
* Add a new template to the cloud
704
704
* @param t docker template
705
705
*/
706
+ @ Override
706
707
public void addTemplate (PodTemplate t ) {
707
708
this .templates .add (t );
708
709
// t.parent = this;
Original file line number Diff line number Diff line change 3
3
* A group of pod templates that can be saved together.
4
4
*/
5
5
public interface PodTemplateGroup {
6
+
7
+ /**
8
+ * Add the template to the group.
9
+ * @param podTemplate the template to add
10
+ */
11
+ void addTemplate (PodTemplate podTemplate );
12
+
6
13
/**
7
14
* Replaces the old template with the new template.
8
15
* @param oldTemplate the old template to replace
You can’t perform that action at this time.
0 commit comments