如何在MACOS 拉取AMD64版本的istio/pilot:1.16.0镜像 name = "istio-ingress" repository = "https://istio-release.storage.googleapis.com/charts" chart = "gateway" namespace = kubernetes_namespace.istio_namespace.metadata[0].name depends_on = [helm_release.install_istio_base, helm_release.install_istiod] version = var.istio_version timeout = var.timeout max_history = var.max_history values = [ file("gateway-values.yaml") ] dynamic "set" { for_each = local.registry_ecr_name content { name = "global.hub" value = set.value } resource "helm_release" "install_istio_ingress" { name = "istio-ingress" repository = "https://istio-release.storage.googleapis.com/charts" chart = "gateway" namespace = kubernetes_namespace.istio_namespace.metadata[0].name depends_on = [helm_release.install_istio_base, helm_release.install_istiod] version = var.istio_version timeout = var.timeout max_history = var.max_history values = [ file("gateway-values.yaml") ] dynamic "set" { for_each = local.registry_ecr_name content { name = "global.hub" value = set.value } }
时间: 2024-04-10 20:32:40 浏览: 170
要在MACOS上拉取AMD64版本的istio/pilot:1.16.0镜像,可以按照以下步骤进行操作:
1. 打开终端,运行以下命令来拉取镜像:
```
docker pull istio/pilot:1.16.0
```
2. 等待镜像下载完成,可以使用以下命令来查看已下载的镜像列表:
```
docker images
```
在列表中,您将看到名为istio/pilot的镜像及其版本号1.16.0。
请注意,这些命令假设您已经安装了Docker,并且具有适当的访问权限来拉取镜像。
阅读全文