123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {{!
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- }}
- <div class="rolling-restart-view">
- <div class="alert alert-info">
- <p>
- {{view.restartMessage}}
- </p>
- {{#if view.maintainanceMessage}}
- <p>
- {{view.maintainanceMessage}}
- </p>
- {{/if}}
- </div>
- <table>
- <tr>
- <td>{{t common.restart}}</td>
- <td>{{view Ember.TextField valueBinding="view.batchSize" class="span1"}}</td>
- <td>{{view.batchSizeMessage}}</td>
- </tr>
- <tr>
- <td>{{t rollingrestart.dialog.msg.timegap.prefix}}</td>
- <td>{{view Ember.TextField valueBinding="view.interBatchWaitTimeSeconds" class="span1"}}</td>
- <td>{{t rollingrestart.dialog.msg.timegap.suffix}}</td>
- </tr>
- <tr>
- <td>{{t rollingrestart.dialog.msg.toleration.prefix}}</td>
- <td>{{view Ember.TextField valueBinding="view.tolerateSize" class="span1"}}</td>
- <td>{{t rollingrestart.dialog.msg.toleration.suffix}}</td>
- </tr>
- <tr>
- <td> </td>
- <td colspan="2">
- {{view Ember.Checkbox checkedBinding="view.staleConfigsOnly"}}
- {{view.staleConfigsOnlyMessage}}
- </td>
- </tr>
- </table>
- {{#if view.errors}}
- <div class="alert alert-warn">
- <ul>
- {{#each error in view.errors}}
- <li>{{error}}</li>
- {{/each}}
- </ul>
- </div>
- {{/if}}
- </div>
|