info.html 5.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!--
Copyright 2015 Google Inc. All Rights Reserved.

Licensed 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.
-->

<kd-info-card>
18 19 20 21 22
  <kd-info-card-header>
    <kd-resource-card-list-title>
      [[Details|Header in a detail view]]
    </kd-resource-card-list-title>
  </kd-info-card-header>
23
  <kd-info-card-section>
24 25
    <kd-object-meta-info-card object-meta="::$ctrl.node.objectMeta">
    </kd-object-meta-info-card>
26
    <kd-info-card-entry title="[[Phase|Label 'Phase' for the node namespace on the node details page.]]"
27 28 29
                        ng-if="::$ctrl.node.phase">
      {{$ctrl.node.phase}}
    </kd-info-card-entry>
30
    <kd-info-card-entry title="[[External ID|Label 'External ID' for the node external ID displayed on its details page.]]"
31 32 33
                        ng-if="::$ctrl.node.externalID">
      {{$ctrl.node.externalID}}
    </kd-info-card-entry>
34
    <kd-info-card-entry title="[[Pod CIDR|Label 'Pod CIDR' for the node external ID displayed on its details page.]]"
35 36 37
                        ng-if="::$ctrl.node.podCIDR">
      {{$ctrl.node.podCIDR}}
    </kd-info-card-entry>
38
    <kd-info-card-entry title="[[Provider ID|Label 'Provider ID' for the node external ID displayed on its details page.]]"
39 40 41
                        ng-if="::$ctrl.node.providerID">
      {{$ctrl.node.providerID}}
    </kd-info-card-entry>
42
    <kd-info-card-entry title="[[Unschedulable|Label 'Unschedulable' for the node external ID displayed on its details page.]]">
43 44
      {{$ctrl.node.unschedulable}}
    </kd-info-card-entry>
45
  </kd-info-card-section>
46 47
  <kd-info-card-section name="[[System info|Subtitle 'System info' for the right section with general information about node system on the node details page.]]">
    <kd-info-card-entry title="[[Machine ID|Label 'Machine ID' for the node machine ID displayed on its details page.]]"
48 49 50
                        ng-if="::$ctrl.node.nodeInfo.machineID">
      {{$ctrl.node.nodeInfo.machineID}}
    </kd-info-card-entry>
51
    <kd-info-card-entry title="[[System UUID|Label 'System UUID' for the node system UUID displayed on its details page.]]"
52 53 54
                        ng-if="::$ctrl.node.nodeInfo.systemUUID">
      {{$ctrl.node.nodeInfo.systemUUID}}
    </kd-info-card-entry>
55
    <kd-info-card-entry title="[[Boot ID|Label 'Boot ID' for the node boot ID displayed on its details page.]]"
56 57 58
                        ng-if="::$ctrl.node.nodeInfo.bootID">
      {{$ctrl.node.nodeInfo.bootID}}
    </kd-info-card-entry>
59
    <kd-info-card-entry title="[[Kernel Version|Label 'Kernel Version' for the node kernel version displayed on its details page.]]"
60 61 62
                        ng-if="::$ctrl.node.nodeInfo.kernelVersion">
      {{$ctrl.node.nodeInfo.kernelVersion}}
    </kd-info-card-entry>
63
    <kd-info-card-entry title="[[OS Image|Label 'OS Image' for the node OS image displayed on its details page.]]"
64 65 66
                        ng-if="::$ctrl.node.nodeInfo.osImage">
      {{$ctrl.node.nodeInfo.osImage}}
    </kd-info-card-entry>
67
    <kd-info-card-entry title="[[Container Runtime Version|Label 'Container Runtime Version' for the node container runtime version displayed on its details page.]]"
68 69 70
                        ng-if="::$ctrl.node.nodeInfo.containerRuntimeVersion">
      {{$ctrl.node.nodeInfo.containerRuntimeVersion}}
    </kd-info-card-entry>
71
    <kd-info-card-entry title="[[Kubelet Version|Label 'Kubelet Version' for the node Kubelet version displayed on its details page.]]"
72 73 74
                        ng-if="::$ctrl.node.nodeInfo.kubeletVersion">
      {{$ctrl.node.nodeInfo.kubeletVersion}}
    </kd-info-card-entry>
75
    <kd-info-card-entry title="[[Kube-Proxy Version|Label 'Kube-Proxy Version' for the node Kube-Proxy version displayed on its details page.]]"
76 77 78
                        ng-if="::$ctrl.node.nodeInfo.kubeProxyVersion">
      {{$ctrl.node.nodeInfo.kubeProxyVersion}}
    </kd-info-card-entry>
79
    <kd-info-card-entry title="[[Operating system|Label 'Operating system' for the node operating system displayed on its details page.]]"
80 81 82
                        ng-if="::$ctrl.node.nodeInfo.operatingSystem">
      {{$ctrl.node.nodeInfo.operatingSystem}}
    </kd-info-card-entry>
83
    <kd-info-card-entry title="[[Architecture|Label 'Architecture' for the node architecture displayed on its details page.]]"
84 85 86 87
                        ng-if="::$ctrl.node.nodeInfo.architecture">
      {{$ctrl.node.nodeInfo.architecture}}
    </kd-info-card-entry>
  </kd-info-card-section>
88
</kd-info-card>
89 90 91 92 93 94
<kd-content-card>
  <kd-content>
    <kd-node-allocated-resources allocated-resources="::$ctrl.node.allocatedResources">
    </kd-node-allocated-resources>
  </kd-content>
</kd-content-card>
95 96
<kd-content-card ng-if="::$ctrl.node.conditions.length">
  <kd-content>
97
    <kd-condition-list conditions="::$ctrl.node.conditions"></kd-condition-list>
98 99
  </kd-content>
</kd-content-card>