Microsoft.ContainerInstance containerGroups 2017-08-01-preview
Bicep 資源定義
containerGroups 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.ContainerInstance/containerGroups 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.ContainerInstance/containerGroups@2017-08-01-preview' = {
location: 'string'
name: 'string'
properties: {
containers: [
{
name: 'string'
properties: {
command: [
'string'
]
environmentVariables: [
{
name: 'string'
value: 'string'
}
]
image: 'string'
ports: [
{
port: int
}
]
resources: {
limits: {
cpu: int
memoryInGB: int
}
requests: {
cpu: int
memoryInGB: int
}
}
volumeMounts: [
{
mountPath: 'string'
name: 'string'
readOnly: bool
}
]
}
}
]
imageRegistryCredentials: [
{
password: 'string'
server: 'string'
username: 'string'
}
]
ipAddress: {
ip: 'string'
ports: [
{
port: int
protocol: 'string'
}
]
type: 'string'
}
osType: 'string'
restartPolicy: 'string'
volumes: [
{
azureFile: {
readOnly: bool
shareName: 'string'
storageAccountKey: 'string'
storageAccountName: 'string'
}
name: 'string'
}
]
}
tags: {
{customized property}: 'string'
}
}
屬性值
AzureFileVolume
名字 |
描述 |
價值 |
readOnly |
旗標,指出掛接為磁碟區的 Azure 檔案共用是否為唯讀。 |
bool |
shareName |
要掛接為磁碟區的 Azure 檔案共享名稱。 |
字串 (必要) |
storageAccountKey |
用來存取 Azure 檔案共用的記憶體帳戶存取金鑰。 |
字串 |
storageAccountName |
包含 Azure 檔案共用的記憶體帳戶名稱。 |
字串 (必要) |
容器
ContainerGroupProperties
名字 |
描述 |
價值 |
器皿 |
容器群組內的容器。 |
容器[] (必要) |
imageRegistryCredentials |
建立容器群組的來源映像登錄認證。 |
ImageRegistryCredential[] |
ipAddress |
容器群組的IP位址類型。 |
IpAddress |
osType |
容器群組中容器所需的操作系統類型。 |
'Linux' 'Windows' (必要) |
restartPolicy |
重新啟動容器群組內所有容器的原則。 目前唯一可用的選項 always 。 |
'always' |
卷 |
此容器群組中的容器可以掛接的磁碟區清單。 |
磁碟區[] |
ContainerPort
名字 |
描述 |
價值 |
港口 |
容器群組內公開的埠號碼。 |
int (必要) |
ContainerProperties
EnvironmentVariable
名字 |
描述 |
價值 |
名字 |
環境變數的名稱。 |
字串 (必要) |
價值 |
環境變數的值。 |
字串 (必要) |
ImageRegistryCredential
名字 |
描述 |
價值 |
密碼 |
私人登錄的密碼。 |
字串 |
伺服器 |
沒有通訊協定的 Docker 映射登錄伺服器,例如 「HTTP」 和 「HTTPs」。 |
字串 (必要) |
username |
私人登錄的用戶名稱。 |
字串 (必要) |
IpAddress
名字 |
描述 |
價值 |
ip |
公開至公用因特網的IP。 |
字串 |
港口 |
容器群組上公開的埠清單。 |
埠[] (必要) |
類型 |
指定IP是否公開至公用因特網。 |
'Public' (必要) |
Microsoft.ContainerInstance/containerGroups
港口
名字 |
描述 |
價值 |
港口 |
埠號碼。 |
int (必要) |
協定 |
與埠相關聯的通訊協定。 |
'TCP' 'UDP' |
ResourceLimits
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU限制。 |
int |
memoryInGB |
此容器實例的 GB 記憶體限制。 |
int |
ResourceRequests
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU要求。 |
int (必要) |
memoryInGB |
此容器實例的 GB 記憶體要求。 |
int (必要) |
ResourceRequirements
卷
VolumeMount
名字 |
描述 |
價值 |
mountPath |
容器內應掛接磁碟區的路徑。 不得包含冒號 (:)。 |
字串 (必要) |
名字 |
磁碟區掛接的名稱。 |
字串 (必要) |
readOnly |
指出磁碟區掛接是否為唯讀的旗標。 |
bool |
快速入門範例
下列快速入門範例會部署此資源類型。
ARM 樣本資源定義
containerGroups 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.ContainerInstance/containerGroups 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.ContainerInstance/containerGroups",
"apiVersion": "2017-08-01-preview",
"name": "string",
"location": "string",
"properties": {
"containers": [
{
"name": "string",
"properties": {
"command": [ "string" ],
"environmentVariables": [
{
"name": "string",
"value": "string"
}
],
"image": "string",
"ports": [
{
"port": "int"
}
],
"resources": {
"limits": {
"cpu": "int",
"memoryInGB": "int"
},
"requests": {
"cpu": "int",
"memoryInGB": "int"
}
},
"volumeMounts": [
{
"mountPath": "string",
"name": "string",
"readOnly": "bool"
}
]
}
}
],
"imageRegistryCredentials": [
{
"password": "string",
"server": "string",
"username": "string"
}
],
"ipAddress": {
"ip": "string",
"ports": [
{
"port": "int",
"protocol": "string"
}
],
"type": "string"
},
"osType": "string",
"restartPolicy": "string",
"volumes": [
{
"azureFile": {
"readOnly": "bool",
"shareName": "string",
"storageAccountKey": "string",
"storageAccountName": "string"
},
"name": "string"
}
]
},
"tags": {
"{customized property}": "string"
}
}
屬性值
AzureFileVolume
名字 |
描述 |
價值 |
readOnly |
旗標,指出掛接為磁碟區的 Azure 檔案共用是否為唯讀。 |
bool |
shareName |
要掛接為磁碟區的 Azure 檔案共享名稱。 |
字串 (必要) |
storageAccountKey |
用來存取 Azure 檔案共用的記憶體帳戶存取金鑰。 |
字串 |
storageAccountName |
包含 Azure 檔案共用的記憶體帳戶名稱。 |
字串 (必要) |
容器
ContainerGroupProperties
名字 |
描述 |
價值 |
器皿 |
容器群組內的容器。 |
容器[] (必要) |
imageRegistryCredentials |
建立容器群組的來源映像登錄認證。 |
ImageRegistryCredential[] |
ipAddress |
容器群組的IP位址類型。 |
IpAddress |
osType |
容器群組中容器所需的操作系統類型。 |
'Linux' 'Windows' (必要) |
restartPolicy |
重新啟動容器群組內所有容器的原則。 目前唯一可用的選項 always 。 |
'always' |
卷 |
此容器群組中的容器可以掛接的磁碟區清單。 |
磁碟區[] |
ContainerPort
名字 |
描述 |
價值 |
港口 |
容器群組內公開的埠號碼。 |
int (必要) |
ContainerProperties
EnvironmentVariable
名字 |
描述 |
價值 |
名字 |
環境變數的名稱。 |
字串 (必要) |
價值 |
環境變數的值。 |
字串 (必要) |
ImageRegistryCredential
名字 |
描述 |
價值 |
密碼 |
私人登錄的密碼。 |
字串 |
伺服器 |
沒有通訊協定的 Docker 映射登錄伺服器,例如 「HTTP」 和 「HTTPs」。 |
字串 (必要) |
username |
私人登錄的用戶名稱。 |
字串 (必要) |
IpAddress
名字 |
描述 |
價值 |
ip |
公開至公用因特網的IP。 |
字串 |
港口 |
容器群組上公開的埠清單。 |
埠[] (必要) |
類型 |
指定IP是否公開至公用因特網。 |
'Public' (必要) |
Microsoft.ContainerInstance/containerGroups
名字 |
描述 |
價值 |
apiVersion |
API 版本 |
'2017-08-01-preview' |
位置 |
資源位置。 |
字串 (必要) |
名字 |
資源名稱 |
字串 (必要) |
性能 |
|
ContainerGroupProperties (必要) |
標籤 |
資源標籤 |
標記名稱和值的字典。 請參閱範本中的 標籤 |
類型 |
資源類型 |
'Microsoft.ContainerInstance/containerGroups' |
港口
名字 |
描述 |
價值 |
港口 |
埠號碼。 |
int (必要) |
協定 |
與埠相關聯的通訊協定。 |
'TCP' 'UDP' |
ResourceLimits
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU限制。 |
int |
memoryInGB |
此容器實例的 GB 記憶體限制。 |
int |
ResourceRequests
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU要求。 |
int (必要) |
memoryInGB |
此容器實例的 GB 記憶體要求。 |
int (必要) |
ResourceRequirements
卷
VolumeMount
名字 |
描述 |
價值 |
mountPath |
容器內應掛接磁碟區的路徑。 不得包含冒號 (:)。 |
字串 (必要) |
名字 |
磁碟區掛接的名稱。 |
字串 (必要) |
readOnly |
指出磁碟區掛接是否為唯讀的旗標。 |
bool |
快速入門範本
下列快速入門範本會部署此資源類型。
containerGroups 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.ContainerInstance/containerGroups 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.ContainerInstance/containerGroups@2017-08-01-preview"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
containers = [
{
name = "string"
properties = {
command = [
"string"
]
environmentVariables = [
{
name = "string"
value = "string"
}
]
image = "string"
ports = [
{
port = int
}
]
resources = {
limits = {
cpu = int
memoryInGB = int
}
requests = {
cpu = int
memoryInGB = int
}
}
volumeMounts = [
{
mountPath = "string"
name = "string"
readOnly = bool
}
]
}
}
]
imageRegistryCredentials = [
{
password = "string"
server = "string"
username = "string"
}
]
ipAddress = {
ip = "string"
ports = [
{
port = int
protocol = "string"
}
]
type = "string"
}
osType = "string"
restartPolicy = "string"
volumes = [
{
azureFile = {
readOnly = bool
shareName = "string"
storageAccountKey = "string"
storageAccountName = "string"
}
name = "string"
}
]
}
})
}
屬性值
AzureFileVolume
名字 |
描述 |
價值 |
readOnly |
旗標,指出掛接為磁碟區的 Azure 檔案共用是否為唯讀。 |
bool |
shareName |
要掛接為磁碟區的 Azure 檔案共享名稱。 |
字串 (必要) |
storageAccountKey |
用來存取 Azure 檔案共用的記憶體帳戶存取金鑰。 |
字串 |
storageAccountName |
包含 Azure 檔案共用的記憶體帳戶名稱。 |
字串 (必要) |
容器
ContainerGroupProperties
名字 |
描述 |
價值 |
器皿 |
容器群組內的容器。 |
容器[] (必要) |
imageRegistryCredentials |
建立容器群組的來源映像登錄認證。 |
ImageRegistryCredential[] |
ipAddress |
容器群組的IP位址類型。 |
IpAddress |
osType |
容器群組中容器所需的操作系統類型。 |
'Linux' 'Windows' (必要) |
restartPolicy |
重新啟動容器群組內所有容器的原則。 目前唯一可用的選項 always 。 |
'always' |
卷 |
此容器群組中的容器可以掛接的磁碟區清單。 |
磁碟區[] |
ContainerPort
名字 |
描述 |
價值 |
港口 |
容器群組內公開的埠號碼。 |
int (必要) |
ContainerProperties
EnvironmentVariable
名字 |
描述 |
價值 |
名字 |
環境變數的名稱。 |
字串 (必要) |
價值 |
環境變數的值。 |
字串 (必要) |
ImageRegistryCredential
名字 |
描述 |
價值 |
密碼 |
私人登錄的密碼。 |
字串 |
伺服器 |
沒有通訊協定的 Docker 映射登錄伺服器,例如 「HTTP」 和 「HTTPs」。 |
字串 (必要) |
username |
私人登錄的用戶名稱。 |
字串 (必要) |
IpAddress
名字 |
描述 |
價值 |
ip |
公開至公用因特網的IP。 |
字串 |
港口 |
容器群組上公開的埠清單。 |
埠[] (必要) |
類型 |
指定IP是否公開至公用因特網。 |
'Public' (必要) |
Microsoft.ContainerInstance/containerGroups
名字 |
描述 |
價值 |
位置 |
資源位置。 |
字串 (必要) |
名字 |
資源名稱 |
字串 (必要) |
性能 |
|
ContainerGroupProperties (必要) |
標籤 |
資源標籤 |
標記名稱和值的字典。 |
類型 |
資源類型 |
“Microsoft.ContainerInstance/containerGroups@2017-08-01-preview” |
港口
名字 |
描述 |
價值 |
港口 |
埠號碼。 |
int (必要) |
協定 |
與埠相關聯的通訊協定。 |
'TCP' 'UDP' |
ResourceLimits
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU限制。 |
int |
memoryInGB |
此容器實例的 GB 記憶體限制。 |
int |
ResourceRequests
名字 |
描述 |
價值 |
中央處理器 |
這個容器實例的CPU要求。 |
int (必要) |
memoryInGB |
此容器實例的 GB 記憶體要求。 |
int (必要) |
ResourceRequirements
卷
VolumeMount
名字 |
描述 |
價值 |
mountPath |
容器內應掛接磁碟區的路徑。 不得包含冒號 (:)。 |
字串 (必要) |
名字 |
磁碟區掛接的名稱。 |
字串 (必要) |
readOnly |
指出磁碟區掛接是否為唯讀的旗標。 |
bool |