-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathconfig.jelly
More file actions
26 lines (24 loc) · 962 Bytes
/
config.jelly
File metadata and controls
26 lines (24 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:st="jelly:stapler" xmlns:rh="/jenkins/plugins/openstack/form">
<rh:blockWrapper>
<f:section title="General Configuration">
<f:entry title="Name" field="name">
<f:textbox checkMethod="post"/>
</f:entry>
<f:entry title="Labels" field="labels">
<f:textbox/>
</f:entry>
<f:slave-mode name="mode" node="${instance}"/>
</f:section>
<f:advanced title="Provisioning details">
<!-- defaultOpts was injected from outside -->
<j:set var="instance" value="${instance.rawSlaveOptions}"/>
<st:include page="config.jelly" it="${instance}" from="${defaultOpts}"/>
</f:advanced>
<f:entry title="">
<div align="right">
<f:repeatableDeleteButton/>
</div>
</f:entry>
</rh:blockWrapper>
</j:jelly>