Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 14 additions & 13 deletions modules/web/src/app/shared/components/cluster-summary/template.html
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ <h4>IPv6</h4>
<div value>{{cluster.credential}}</div>
</km-property>

<ng-container *ngIf="!cluster.credential">
<ng-container *ngIf="displaySettings()">
<!-- AWS -->
<ng-container *ngIf="cluster.spec.cloud?.aws">
<km-property *ngIf="cluster.spec.cloud?.aws?.securityGroupID">
Expand Down Expand Up @@ -385,7 +385,7 @@ <h4>IPv6</h4>
<div value>{{cluster.spec.cloud?.azure.vnet}}</div>
</km-property>

<km-property-boolean *ngIf="cluster.spec.cloud?.azure?.assignAvailabilitySet"
<km-property-boolean *ngIf="cluster.spec.cloud?.azure?.assignAvailabilitySet !== undefined"
label="Assign Availability Set"
[value]="cluster.spec.cloud.azure.assignAvailabilitySet">
</km-property-boolean>
Expand Down Expand Up @@ -413,7 +413,7 @@ <h4>IPv6</h4>

<!-- Openstack -->
<ng-container *ngIf="cluster.spec.cloud?.openstack">
<km-property>
<km-property *ngIf="cluster.spec.cloud?.openstack.domain">
<div key>Domain</div>
<div value>{{cluster.spec.cloud?.openstack.domain}}</div>
</km-property>
Expand Down Expand Up @@ -457,7 +457,8 @@ <h4>IPv6</h4>
<div key>IPv6 Subnet Pool</div>
<div value>{{cluster.spec.cloud?.openstack.ipv6SubnetPool}}</div>
</km-property>
<km-property-boolean label="Enable Ingress Hostname"
<km-property-boolean *ngIf="cluster.spec.cloud?.openstack.enableIngressHostname !== undefined"
label="Enable Ingress Hostname"
[value]="cluster.spec.cloud?.openstack.enableIngressHostname">
</km-property-boolean>
<km-property *ngIf="cluster.spec.cloud?.openstack.ingressHostnameSuffix">
Expand All @@ -478,15 +479,15 @@ <h4>IPv6</h4>

<!-- Nutanix -->
<ng-container *ngIf="cluster.spec.cloud?.nutanix">
<km-property>
<km-property *ngIf="cluster.spec.cloud.nutanix.username">
<div key>Username</div>
<div value>{{cluster.spec.cloud.nutanix.username}}</div>
</km-property>
<km-property *ngIf="cluster.spec.cloud.nutanix.proxyURL">
<div key>Proxy URL</div>
<div value>{{cluster.spec.cloud.nutanix.proxyURL}}</div>
</km-property>
<km-property>
<km-property *ngIf="cluster.spec.cloud.nutanix.clusterName">
<div key>Cluster Name</div>
<div value>{{cluster.spec.cloud.nutanix.clusterName}}</div>
</km-property>
Expand All @@ -495,11 +496,11 @@ <h4>IPv6</h4>
<div value>{{cluster.spec.cloud.nutanix.projectName}}</div>
</km-property>
<ng-container *ngIf="cluster.spec.cloud?.nutanix?.csi">
<km-property>
<km-property *ngIf="cluster.spec.cloud.nutanix.csi.username">
<div key>Prism Element Username</div>
<div value>{{cluster.spec.cloud.nutanix.csi.username}}</div>
</km-property>
<km-property>
<km-property *ngIf="cluster.spec.cloud.nutanix.csi.endpoint">
<div key>Prism Element Endpoint</div>
<div value>{{cluster.spec.cloud.nutanix.csi.endpoint}}</div>
</km-property>
Expand All @@ -520,7 +521,7 @@ <h4>IPv6</h4>

<!-- vSphere -->
<ng-container *ngIf="cluster.spec.cloud?.vsphere">
<km-property>
<km-property *ngIf="cluster.spec.cloud?.vsphere.username">
<div key>Username</div>
<div value>{{cluster.spec.cloud?.vsphere.username}}</div>
</km-property>
Expand Down Expand Up @@ -556,19 +557,19 @@ <h4>IPv6</h4>

<!-- VMware Cloud Director -->
<ng-container *ngIf="cluster.spec.cloud?.vmwareclouddirector as vmwareclouddirector">
<km-property>
<km-property *ngIf="vmwareclouddirector.username">
<div key>Username</div>
<div value>{{vmwareclouddirector.username}}</div>
</km-property>
<km-property>
<km-property *ngIf="vmwareclouddirector.organization">
<div key>Organization</div>
<div value>{{vmwareclouddirector.organization}}</div>
</km-property>
<km-property>
<km-property *ngIf="vmwareclouddirector.vdc">
<div key>VDC</div>
<div value>{{vmwareclouddirector.vdc}}</div>
</km-property>
<km-property>
<km-property *ngIf="vmwareclouddirector.ovdcNetworks">
<div key>Organization VDC Networks</div>
<div value>{{vmwareclouddirector.ovdcNetworks}}</div>
</km-property>
Expand Down