mirror of https://github.com/rancher/ui.git
53 lines
966 B
Handlebars
53 lines
966 B
Handlebars
{{#accordion-list showExpandAll=false as | al expandFn |}}
|
|
<div class="over-hr">
|
|
<span>
|
|
{{driverOptionsTitle}}
|
|
</span>
|
|
</div>
|
|
|
|
{{#each-in schema.resourceFields as |key value|}}
|
|
{{api-field
|
|
resource=config
|
|
resourceType=driverName
|
|
field=key
|
|
value=(get config key)
|
|
schema=schema
|
|
typeDocs=typeDocumentations
|
|
}}
|
|
{{/each-in}}
|
|
|
|
<div class="over-hr">
|
|
<span>
|
|
{{templateOptionsTitle}}
|
|
</span>
|
|
</div>
|
|
|
|
{{form-name-description
|
|
model=model
|
|
nameRequired=true
|
|
rowClass="row mb-10"
|
|
}}
|
|
|
|
{{form-user-labels
|
|
initialLabels=labelResource.labels
|
|
setLabels=(action "setLabels")
|
|
}}
|
|
|
|
{{form-node-taints
|
|
model=model
|
|
expand=(action expandFn)
|
|
}}
|
|
|
|
{{form-engine-opts
|
|
machine=model
|
|
showEngineUrl=showEngineUrl
|
|
}}
|
|
|
|
{{top-errors errors=errors}}
|
|
{{save-cancel
|
|
save=(action "save")
|
|
cancel=(action "cancel")
|
|
editing=editing
|
|
}}
|
|
{{/accordion-list}}
|