如何使用 yaml 文件创建 azure 容器实例
How to create an azure container instance using a yaml file
我有完整的 CLI 命令来创建 Azure 容器实例。从该命令创建实例工作正常。现在我正在考虑将所有这些命令参数放在一个 yaml 文件中。
我已经检查了以下帮助我开始的 link :
Mount Azure files volume to container
我的问题如下:
1 - 在我的命令中,我需要从我的 Azure 容器注册表中获取图像,为此我们需要传递服务器名称和密码。如何在 yaml 文件中定义此条目?
2 - 我有一组环境要设置,我应该设置它们的语法?
感谢您的帮助
问候
1 - In my command I need to get the image from my Azure Container
registry, for which we need to pass the server name and password. How
to define this entry in a yaml file ?
您在 YAML 文件中使用 ImageRegistryCredentials
属性
指定图像注册表凭据
imageRegistryCredentials: # Credentials to pull a private image
- server: string
username: string
password: string
2 - I have a set of environment to be set, in which syntax should I
set them ?
这是初始化环境变量的语法
environmentVariables:
- name: string
value: string
secureValue: string
的 YAML 参考 Azure 文档
我有完整的 CLI 命令来创建 Azure 容器实例。从该命令创建实例工作正常。现在我正在考虑将所有这些命令参数放在一个 yaml 文件中。
我已经检查了以下帮助我开始的 link : Mount Azure files volume to container
我的问题如下:
1 - 在我的命令中,我需要从我的 Azure 容器注册表中获取图像,为此我们需要传递服务器名称和密码。如何在 yaml 文件中定义此条目?
2 - 我有一组环境要设置,我应该设置它们的语法?
感谢您的帮助 问候
1 - In my command I need to get the image from my Azure Container registry, for which we need to pass the server name and password. How to define this entry in a yaml file ?
您在 YAML 文件中使用 ImageRegistryCredentials
属性
imageRegistryCredentials: # Credentials to pull a private image
- server: string
username: string
password: string
2 - I have a set of environment to be set, in which syntax should I set them ?
这是初始化环境变量的语法
environmentVariables:
- name: string
value: string
secureValue: string
的 YAML 参考 Azure 文档