diff --git a/.gitignore b/.gitignore index 562965888d..269dcad1fb 100644 --- a/.gitignore +++ b/.gitignore @@ -83,6 +83,7 @@ dist .idea .editorconfig *.org +*.tern-port # Service worker sw.* diff --git a/assets/styles/global/_columns.scss b/assets/styles/global/_columns.scss index 02659de4f4..2b82508582 100644 --- a/assets/styles/global/_columns.scss +++ b/assets/styles/global/_columns.scss @@ -81,6 +81,23 @@ $GUTTER: 1.75%; } } +.flex-justify-center { + justify-content: center; +} + +.flex-justify-right { + justify-content: right; +} + +.flex-justify-left { + justify-content: left; +} + +.container-flex-center { + @extend .container-flex; + align-items: center; +} + // Equal height columns .row-full-height { height: 100%; diff --git a/assets/translations/en-us.yaml b/assets/translations/en-us.yaml index ca77f94542..9d4711dfe7 100644 --- a/assets/translations/en-us.yaml +++ b/assets/translations/en-us.yaml @@ -16,6 +16,18 @@ nav: namespace: "{name}" orphan: "Not in a Project" +cluster: + provider: + aliyunengineconfig: Alibaba ACK + amazonelasticcontainerserviceconfig: Amazon EKS + azurekubernetesserviceconfig: Azure AKS + googlekubernetesengineconfig: Google GKE + huaweiengineconfig: Huawei CCE + importedconfig: Import + rancherkubernetesengineconfig: Rancher RKE + tencentengineconfig: Tencent TKE + baiduengineconfig: Baidu CCE + footer: docs: Docs forums: Forums @@ -27,9 +39,13 @@ clusterIndexPage: header: "Cluster: {name}" sections: nodes: - label: Nodes + label: Unhealthy Nodes + noRows: "There are no unhealthy nodes to show." gatekeeper: - label: OPA Gatekeeper Constraints + label: OPA Gatekeeper Constraint Violations + disabled: OPA Gatekeeper is not configured. + buttonText: Configure Gatekeeper + noRows: "There are no contrains with violations to show." events: label: Events @@ -39,11 +55,20 @@ infoBoxCluster: memory: Memory pods: Pods provider: Provider - reserved: "{numerator} of {denominator} Reserved" - used: "{numerator} of {denominator} Used" + reserved: "{numerator} of {denominator} rsvd" + used: "{numerator} of {denominator} used" version: Kubernetes Version + nodes: + worker: + label: Worker Nodes + etcd: + label: Etcd Nodes + controlPlane: + label: Control Plane Nodes sortableTable: + noRows: "There are no rows to show." + noData: "There are no rows which match your search query." paging: generic: | {pages, plural, diff --git a/components/GatekeeperConfig.vue b/components/GatekeeperConfig.vue index ce5e7958c6..763a00232c 100644 --- a/components/GatekeeperConfig.vue +++ b/components/GatekeeperConfig.vue @@ -375,7 +375,7 @@ export default {