|
@@ -18,7 +18,44 @@
|
|
|
<div class="panel panel-default mainpage">
|
|
|
<div class="panel-body">
|
|
|
<h1>Welcome to Apache Ambari</h1>
|
|
|
- <p>Use the controls to the left to provision a cluster, manage who can access the cluster, and customize views for Ambari users.</p>
|
|
|
+ <div ng-if="isLoaded" id="main-operations-boxes" class="row thumbnails">
|
|
|
+ <p ng-hide="cluster">Provision a cluster, manage who can access the cluster, and customize views for Ambari users.</p>
|
|
|
+ <p ng-show="cluster">Monitor your cluster resources, manage who can access the cluster, and customize views for Ambari users.</p>
|
|
|
+ <!--Clusters-->
|
|
|
+ <div ng-show="cluster" class="col-sm-11 thumbnail">
|
|
|
+ <h4 class="title">Operate Your Cluster</h4>
|
|
|
+ <div class="description">Manage the configuration of your cluster and monitor the health of your services</div>
|
|
|
+ <div class="glyphicon glyphicon-cloud"></div>
|
|
|
+ <div class="buttons">
|
|
|
+ <span ng-class="{active: isActive('clusters.manageAccess')}"><a href="#/clusters/{{cluster.Clusters.cluster_name}}/manageAccess" class="btn btn-primary permission-button">Manage Permissions</a></span>
|
|
|
+ <span><a href="/#/main/dashboard" class="btn btn-primary go-dashboard-button" target="{{cluster.Clusters.cluster_name}}">Go to Dashboard</a></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div ng-hide="cluster" class="col-sm-11 thumbnail">
|
|
|
+ <h4 class="title">Create a Cluster</h4>
|
|
|
+ <div class="description">Use the Install Wizard to select services and configure your cluster</div>
|
|
|
+ <div class="glyphicon glyphicon-cloud"></div>
|
|
|
+ <div class="buttons"> <a href="/#/installer/step0" class="btn btn-primary create-cluster-button">Install Cluster</a></div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!--Manage Users and groups-->
|
|
|
+ <div class="col-sm-5 thumbnail">
|
|
|
+ <h4 class="title">Manage Users + Groups</h4>
|
|
|
+ <div class="description">Manage the users and groups that can access Ambari</div>
|
|
|
+ <div class="glyphicon glyphicon-user"></div>
|
|
|
+ <div class="buttons">
|
|
|
+ <span ng-class="{active: isActive('users.list')}"><link-to route="users.list" class="btn btn-primary userslist-button">Users</link-to></span>
|
|
|
+ <span ng-class="{active: isActive('groups.list')}"><link-to route="groups.list" class="btn btn-primary groupslist-button">Groups</link-to></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!--Deploy Views-->
|
|
|
+ <div class="col-sm-5 thumbnail">
|
|
|
+ <h4 class="title">Deploy Views</h4>
|
|
|
+ <div class="description">Create view instances and grant permissions</div>
|
|
|
+ <div class="glyphicon glyphicon-th"></div>
|
|
|
+ <div ng-class="{active: isActive('views.list')}" class="buttons"><link-to route="views.list" class="btn btn-primary viewslist-button">Views</link-to></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|