forked from kubernetes/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Indonesian Translation for names (kubernetes#14320)
* Fix phrase * Fix date format on glossary files
- Loading branch information
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
content/id/docs/concepts/overview/working-with-objects/names.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
title: Nama | ||
content_template: templates/concept | ||
weight: 20 | ||
--- | ||
|
||
{{% capture overview %}} | ||
|
||
Seluruh objek di dalam REST API Kubernetes secara jelas ditandai dengan nama dan UID. | ||
|
||
Apabila pengguna ingin memberikan atribut tidak unik, Kubernetes menyediakan [label](/docs/user-guide/labels) dan [anotasi](/docs/concepts/overview/working-with-objects/annotations/). | ||
|
||
Bacalah [dokumentasi desain penanda](https://git.k8s.io/community/contributors/design-proposals/architecture/identifiers.md) agar kamu dapat memahami lebih lanjut sintaks yang digunakan untuk Nama dan UID. | ||
|
||
{{% /capture %}} | ||
|
||
|
||
{{% capture body %}} | ||
|
||
## Nama | ||
|
||
{{< glossary_definition term_id="name" length="all" >}} | ||
|
||
Berdasarkan ketentuan, nama dari _resources_ Kubernetes memiliki panjang maksimum 253 karakter yang terdiri dari karakter alfanumerik huruf kecil, `-`, dan `.`, tetapi *resources* tertentu punya lebih banyak batasan yang spesifik | ||
|
||
## UID | ||
|
||
{{< glossary_definition term_id="uid" length="all" >}} | ||
|
||
{{% /capture %}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: Name | ||
id: name | ||
date: 2019-15-05 | ||
full_link: /docs/concepts/overview/working-with-objects/names | ||
short_description: > | ||
String yang dihasilkan oleh klien yang mengacu pada sebuah objek dalam suatu URL resource, seperti `/api/v1/pods/some-name`. | ||
aka: | ||
tags: | ||
- fundamental | ||
--- | ||
String yang dihasilkan oleh klien yang mengacu pada sebuah objek dalam suatu URL *resource*, seperti `/api/v1/pods/some-name`. | ||
|
||
<!--more--> | ||
|
||
Sebuah objek dengan kind yang sama tidak boleh memiliki nama yang sama pada suatu waktu tertentu. Meskipun begitu, apabila kamu menghapus sebuah objek, kamu membuat sebuah objek baru (yang memiliki kind yang sama) dengan nama yang sama dengan objek yang kamu hapus sebelumnya. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
title: UID | ||
id: uid | ||
date: 2019-15-05 | ||
full_link: /docs/concepts/overview/working-with-objects/names | ||
short_description: > | ||
String yang dihasilkan oleh sistem Kubernetes untuk mengidentifikasi objek secara unik. | ||
aka: | ||
tags: | ||
- fundamental | ||
--- | ||
String yang dihasilkan oleh sistem Kubernetes untuk mengidentifikasi objek secara unik. | ||
|
||
<!--more--> | ||
|
||
Setiap objek yang ada pada kluster Kubernetes memiliki UID yang unik. Hal ini dilakukan untuk membedakan keberadaan historis suatu entitas dengan kind dan nama yang serupa. |