Windows Core EKS 节点管理命令
windows 查看磁盘空间的使用情况:
Get-PSDrive -Name C | Select-Object Name, Free
windows 实例的磁盘空间扩容
diskpart
list volume
select volume 0
extend
从ecr下载镜像
$ecrCreds = (Get-ECRLoginCommand).password
Write-Host $ecrCreds
ctr -n k8s.io image pull -u AWS:$ecrCreds ecr link
pull image 需要使用节点的C盘空间, 在节点的磁盘空间不足的情况下,会报错。
rpc error: code = Unknown desc = failed to pull and unpack image
failed to extract layer sha256:9ee7a25f1f619685e0c27cd1f08b34fd7a567f8f0fa789gf9aeb79c72169afa: hcsshim::ImportLayer failed in Win32: There is not enough space on the disk. (0x70): unknown
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Liarlee's Notebook!