123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {{!
- * 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.
- }}
- {{#if view.supportsHostOverrides}}
- {{#if selectedService.restartRequired}}
- <div class="alert">
- <div class="clearfix like_pointer collapsable" {{action toggleRestartMessageView target="view"}}>
- {{#if view.isRestartMessageCollapsed}}
- <i class="icon-caret-down pull-left"></i>
- {{else}}
- <i class="icon-caret-right pull-left"></i>
- {{/if}}
- <i class="icon-refresh"></i>
- <strong>{{t dashboard.services.configs.popup.restartService.header}}</strong> {{selectedService.restartRequiredMessage}}
- </div>
- <div class="service-body">
- <ul>
- {{#each host in selectedService.restartRequiredHostsAndComponents}}
- <li>
- <a href="#" {{action showDetails host.hostData}}>{{host.hostData.publicHostName}}</a>
- <ul>
- {{#each component in host.components}}
- <li>{{component.name}}</li>
- {{/each}}
- </ul>
- </li>
- {{/each}}
- </ul>
- </div>
- </div>
- {{/if}}
- {{/if}}
- {{#if view.supportsHostOverrides}}
- <div class="alert alert-info">
- {{t common.group}}
- <span class="btn-group">
- <button {{bindAttr disabled="controller.isHostsConfigsPage"}} class="btn">{{selectedConfigGroup.displayNameHosts}}</button>
- <button {{bindAttr disabled="controller.isHostsConfigsPage"}} class="btn dropdown-toggle" data-toggle="dropdown">
- <span class="caret"></span>
- </button>
- <ul class="dropdown-menu">
- <!-- available config group menu links -->
- {{#each configGroup in configGroups}}
- <li>
- <a href="#" {{action "selectConfigGroup" configGroup target="controller"}}>
- {{configGroup.displayNameHosts}}
- </a>
- </li>
- {{/each}}
- </ul>
- </span>
- {{#if App.isAdmin}}
- {{#if controller.isHostsConfigsPage}}
- <a href="#" {{action "switchHostGroup" target="controller"}}>{{t common.change}}</a>
- {{else}}
- <a href="#" class="link-left-pad" {{action "manageConfigurationGroup" target="controller"}}>{{t services.service.actions.manage_configuration_groups.short}}</a>
- {{/if}}
- {{/if}}
- <div class="pull-right">
- {{view App.FilterComboCleanableView filterBinding="view.filter" columnsBinding="view.columns" popoverDescriptionBinding="view.propertyFilterPopover"}}
- </div>
- </div>
- {{/if}}
- {{#if App.supports.configHistory}}
- {{#if view.showConfigHistoryFlow}}
- {{view App.ConfigHistoryFlowView serviceBinding="selectedService"}}
- {{/if}}
- {{/if}}
- {{#if versionLoaded}}
- <div class="accordion">
- {{#each category in selectedService.configCategories}}
- {{#if category.isCustomView}}
- {{#if App.supports.capacitySchedulerUi}}
- {{view category.customView categoryBinding="category" serviceBinding="selectedService" canEditBinding="view.canEdit" serviceConfigsBinding="selectedService.configs"}}
- {{/if}}
- {{else}}
- {{view App.ServiceConfigsByCategoryView categoryBinding="category" canEditBinding="view.canEdit" serviceBinding="selectedService" serviceConfigsBinding="selectedService.configs" supportsHostOverridesBinding="view.supportsHostOverrides"}}
- {{/if}}
- {{/each}}
- </div>
- {{else}}
- <div class="spinner"></div>
- {{/if}}
|