update /ja/docs/concepts/overview/working-with-objects/annotations/

This commit is contained in:
Naoki Oketani
2020-05-20 12:21:53 +09:00
parent 0e4e60cd82
commit cc3b3d0032
@@ -59,6 +59,23 @@ _アノテーション_ はキーとバリューのペアです。有効なア
`kubernetes.io/``k8s.io/`プレフィックスは、Kubernetesコアコンポーネントのために予約されています。 `kubernetes.io/``k8s.io/`プレフィックスは、Kubernetesコアコンポーネントのために予約されています。
たとえば、`imageregistry: https://hub.docker.com/`というアノテーションが付いたPodの構成ファイルは次のとおりです:
```yaml
apiVersion: v1
kind: Pod
metadata:
name: annotations-demo
annotations:
imageregistry: "https://hub.docker.com/"
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
```
{{% /capture %}} {{% /capture %}}
{{% capture whatsnext %}} {{% capture whatsnext %}}