DevOps エンジニアは、kubectl annotate
コマンドと kubectl label
コマンドを使用して、セルフサービス名前空間の注釈とラベルを更新または削除できます。
前提条件
手順
- スーパーバイザー クラスタにログインします。
kubectl vsphere login --server IP-ADDRESS-SUPERVISOR-CLUSTER --vsphere-username VCENTER-SSO-USERNAME
- 更新する名前空間を定義します。
root@localhost [ /tmp ]# kubectl describe ns testns Name: testns Labels: my-label=test-label-2 vSphereClusterID=domain-c50 Annotations: my-ann: test-ann-2 vmware-system-namespace-owner-count: 2 vmware-system-resource-pool: resgroup-153 vmware-system-resource-pool-cpu-limit: 0.4770 vmware-system-resource-pool-memory-limit: 2000Mi vmware-system-self-service-namespace: true vmware-system-vm-folder: group-v154 Status: Active Resource Quotas Name: testns Resource Used Hard -------- --- --- requests.storage 0 5000Mi Name: testns-storagequota Resource Used Hard -------- --- --- namespace-service-storage-profile.storageclass.storage.k8s.io/requests.storage 0 9223372036854775807
- kubectl annotate コマンドを使用して注釈を更新します。
たとえば、 kubectl annotate --overwrite ns testns my-ann="test-ann-3"。注釈を削除するには、 kubectl annotate --overwrite ns testns my-ann- コマンドを実行します。
- kubectl label コマンドを使用してラベルを更新します。
たとえば、 kubectl label --overwrite ns testns my-label="test-label-3"。ラベルを削除するには、 kubectl label --overwrite ns testns my-label- コマンドを実行します。
- 更新を表示する名前空間を定義します。
root@localhost [ /tmp ]# kubectl describe ns testns Name: testns Labels: my-label=test-label-3 vSphereClusterID=domain-c50 Annotations: my-ann: test-ann-3 vmware-system-namespace-owner-count: 2 vmware-system-resource-pool: resgroup-153 vmware-system-resource-pool-cpu-limit: 0.4770 vmware-system-resource-pool-memory-limit: 2000Mi vmware-system-self-service-namespace: true vmware-system-vm-folder: group-v154 Status: Active Resource Quotas Name: testns Resource Used Hard -------- --- --- requests.storage 0 5000Mi Name: testns-storagequota Resource Used Hard -------- --- --- namespace-service-storage-profile.storageclass.storage.k8s.io/requests.storage 0 9223372036854775807 No LimitRange resource.