Skip to content

Commit 4301f58

Browse files
Merge branch 'master' of https://github.com/kubernetes/website
2 parents d327b9e + 6b2a5fc commit 4301f58

File tree

8 files changed

+63
-63
lines changed

8 files changed

+63
-63
lines changed

content/en/blog/_posts/2019-06-19-kubernetes-1-15-release-announcement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Volume cloning enables users to specify another PVC as a "DataSource" when provi
8989
- ExecutionHook API [designed to trigger hook commands](https://github.com/kubernetes/enhancements/issues/962) in the containers for different use cases is now Alpha.
9090
- Continued deprecation of extensions/v1beta1, apps/v1beta1, and apps/v1beta2 APIs; these extensions will be retired in 1.16!
9191

92-
Check the [release notes](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.15.md#kubernetes-v115-release-notes) for a complete list of notable features and fixes.
92+
Check the [release notes](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.15.md#kubernetes-v115-release-notes) for a complete list of notable features and fixes.
9393

9494
**Availability**
9595

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: Aplikasi
3+
id: applications
4+
date: 2019-05-12
5+
full_link:
6+
short_description: >
7+
Lapisan (_layer_) tempat menjalankan berbagai aplikasi dalam Container.
8+
aka:
9+
tags:
10+
- fundamental
11+
---
12+
Lapisan (_layer_) tempat menjalankan berbagai aplikasi dalam Container.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: cgroup (control group)
3+
id: cgroup
4+
date: 2019-06-25
5+
full_link:
6+
short_description: >
7+
Suatu grup proses Linux dengan isolasi, penghitungan, dan pembatasan sumber daya opsional.
8+
aka:
9+
- grup kontrol
10+
tags:
11+
- fundamental
12+
---
13+
Suatu grup proses Linux dengan isolasi, penghitungan, dan pembatasan sumber daya opsional.
14+
15+
<!--more-->
16+
17+
cgroup merupakan fitur kernel Linux yang membatasi, menghitung, dan mengisolasi penggunaan sumber daya (CPU, memori, I/O diska, jaringan) untuk sekumpulan proses.
Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
---
2-
title: Cluster Operator
2+
title: Operator Klaster
33
id: cluster-operator
44
date: 2018-04-12
55
full_link:
66
short_description: >
7-
Seseorang yang mengkonfigurasi, mengontrol, dan memonitor cluster.
7+
Seseorang yang mengonfigurasi, mengontrol, dan memonitor klaster.
88
9-
aka:
9+
aka:
1010
tags:
1111
- user-type
1212
---
13-
Seseorang yang mengkonfigurasi, mengontrol, dan memonitor cluster.
13+
Seseorang yang mengonfigurasi, mengontrol, dan memonitor klaster.
1414

15-
<!--more-->
15+
<!--more-->
1616

17-
18-
Tanggung jawab utama mereka adalah menjaga dan menjalankan cluster, yang mungkin melibatkan kegiatan pemeliharaan berkala atau peningkatan. <br>
17+
Tanggung jawab utama operator klaster adalah menjaga dan menjalankan klaster, yang mungkin melibatkan kegiatan pemeliharaan berkala atau peningkatan.
1918

2019
{{< note >}}
21-
Operator cluster berbeda dari [Pola operator] (https://coreos.com/operators) yang memperluas API Kubernetes.
20+
Operator klaster berbeda dari [pola Operator](https://coreos.com/operators) yang memperluas API Kubernetes.
2221
{{< /note >}}
23-
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
title: Klaster
3+
id: cluster
4+
date: 2019-06-15
5+
full_link:
6+
short_description: >
7+
Sekumpulan mesin pekerja, yang dikenal sebagai Node, yang menjalankan aplikasi dalam Container. Setiap klaster setidaknya mempunyai satu Node pekerja.
8+
aka:
9+
tags:
10+
- fundamental
11+
- operation
12+
---
13+
Sekumpulan mesin pekerja, yang dikenal sebagai {{< glossary_tooltip term_id="node" >}}, yang menjalankan aplikasi dalam Container. Setiap klaster setidaknya mempunyai satu Node pekerja.
14+
15+
<!--more-->
16+
17+
Node pekerja menjalankan {{< glossary_tooltip term_id="pod" >}} yang merupakan komponen dari beban kerja aplikasi. {{< glossary_tooltip term_id="control-plane" >}} mengelola Node pekerja dan Pod di dalam klaster. Pada lingkungan produksi, _control plane_ biasanya berjalan di beberapa komputer dan suatu klaster pada umumnya menjalankan beberapa Node, hal ini akan memberikan toleransi kesalahan (_fault-tolerance_) dan ketersediaan tinggi (_high availability_).

content/zh/docs/concepts/overview/working-with-objects/labels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Similarly the comma separator acts as an _AND_ operator. So filtering resources
239239
The _set-based_ label selector is a general form of equality since `environment=production` is equivalent to `environment in (production)`; similarly for `!=` and `notin`.
240240
-->
241241
_基于集合_ 的标签选择算符是相等标签选择算符的一般形式,因为 `environment=production`
242-
等同于 `environment in(production`;`!=` 和 `notin` 也是类似的。
242+
等同于 `environment in(production`;`!=` 和 `notin` 也是类似的。
243243
244244
<!--
245245
_Set-based_ requirements can be mixed with _equality-based_ requirements. For example: `partition in (customerA, customerB),environment!=qa`.

0 commit comments

Comments
 (0)