Skip to content

Commit

Permalink
Update container VM image size and bridge network signposts (#179) (#180
Browse files Browse the repository at this point in the history
)

* Update container VM image size and bridge network signposts

* Fix image size label and bridge network signpost styles
  • Loading branch information
jak-atx authored Dec 4, 2017
1 parent 7f78e5e commit 66579a8
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,10 @@
<div class="col-xs-1 px-0">

<clr-signpost>
<clr-signpost-content [clrPosition]="'bottom-left'" *clrIfOpen>
Only change this IP range if you are using this range elsewhere in your datacenter
<clr-signpost-content [clrPosition]="'bottom-left'" *clrIfOpen class="bridge-network-signpost">
Bridge networks are the network or networks that container VMs use to communicate with each other.
Every virtual container host (VCH) must have a unique bridge network.
Do not use the bridge network for any other VM workloads, or as a bridge for more than one VCH.
</clr-signpost-content>
</clr-signpost>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
width: 6em;
}

:host ::ng-deep clr-signpost .signpost-action {
margin-top: 0;
margin-bottom: 0;
:host ::ng-deep clr-signpost {
.signpost-action {
margin-top: 0;
margin-bottom: 0;
}
}

.bridge-network-signpost {
width: 480px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@
<div class="form-group row">
<div class="col-xs-3">

<label>
Base image size
<label class="image-size-label">
Max Container VM<br>
image size
</label>

</div>
Expand Down Expand Up @@ -98,6 +99,16 @@
</div>

</div>

<clr-signpost>
<clr-signpost-content [clrPosition]="'top-left'" *clrIfOpen>
<span>
The size of the base image from which to create other images. You do not normally need to change this value.
The default size is 8GB, but images are thin-provisioned so they do not usually consume 8GB of space.
</span>
</clr-signpost-content>
</clr-signpost>

</div>

</section>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@
cursor: pointer;
}
}

.image-size-label {
margin-top: 10px;
line-height: 16px;
}

0 comments on commit 66579a8

Please sign in to comment.