text
stringlengths
1.14k
21k
source_file
stringlengths
18
81
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_add'.The syntax is: az aks maintenanceconfiguration add --cluster-name --name --resource-group [--config-file] [--day-of-month] [--day-of-week] [--duration] [--interval-days] [--interval-months] [--interval-weeks] [--schedule-type {absolutemonthly, daily, relativemonthly, weekly}] [--start-date] [--start-hour] [--start-time] [--utc-offset] [--week-index {first, fourth, last, second, third}] [--weekday]. The 1th example of the child command would be to use it to 'add default maintenance configuration with weekday and start hour', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --weekday Monday --start-hour 1 The maintenance is allowed on Monday 1:00am to 2:00am. The 2th example of the child command would be to use it to 'add default maintenance configuration with weekday the maintenance is allowd on any time of that day', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --weekday Monday The maintenance is allowed on Monday.. The 3th example of the child command would be to use it to 'add default maintenance configuration with maintenance configuration json file', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on UTC time Tuesday 1:00am - 3:00 am and Wednesday 1:00am - 2:00am, 6:00am-7:00am No maintenance is allowed from 2020-11-26T03:00:00Z to 2020-11-30T12:00:00Z and from 2020-12-26T03:00:00Z to 2020-12-26T12:00:00Z even if they are allowed in the above weekly setting { "timeInWeek": [ { "day": "Tuesday", "hourSlots": [ 1, 2 ] }, { "day": "Wednesday", "hourSlots": [ 1, 6 ] } ], "notAllowedTime": [ { "start": "2021-11-26T03:00:00Z", "end": "2021-11-30T12:00:00Z" }, { "start": "2021-12-26T03:00:00Z", "end": "2021-12-26T12:00:00Z" } ] }. The 4th example of the child command would be to use it to 'add aksmanagednodeosupgradeschedule maintenance configuration with daily schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Daily --interval-days 2 --duration 12 --utc-offset=-08:00 --start-date 2023-01-16 --start-time 00:00 The maintenance is allowed from 00:00 to 12:00 (adjusted with UTC offset: -08:00) every two days, and this configuration will be effective from 2023-01-16.. The 5th example of the child command would be to use it to 'add aksmanagednodeosupgradeschedule maintenance configuration with weekly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Weekly --day-of-week Friday --interval-weeks 3 --duration 8 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on Friday from 09:30 to 17:30 (adjusted with UTC offset: +05:30) every three weeks, and this configuration will be effective from 2023-01-16.. The 6th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with absolute monthly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type AbsoluteMonthly --day-of-month 15 --interval-months 1 --duration 6 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the 15th of the month from 09:30 to 15:30 (adjusted with UTC offset: +05:30) every month, and this configuration will be effective from 2023-01-16.. The 7th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with relative monthly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type RelativeMonthly --day-of-week Tuesday --week-index Last --interval-months 3 --duration 6 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the last Tuesday from 09:30 to 15:30 in default UTC time every 3 months, and this configuration will be effective from 2023-01-16.. The 8th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with json file', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on the 1st of the month from 09:00 to 13:00 (adjusted with UTC offset: -08:00) every 3 months, and this configuration will be effective from 2023-01-16. No maintenance is allowed from 2022-12-23 to 2023-01-05 and from 2023-11-23 to 2023-11-26 even if they are allowed in the above monthly setting { "maintenanceWindow": { "schedule": { "absoluteMonthly": { "intervalMonths": 3, "dayOfMonth": 1 } }, "durationHours": 4, "utcOffset": "-08:00", "startTime": "09:00", "notAllowedDates": [ { "start": "2022-12-23", "end": "2023-01-05" }, { "start": "2023-11-23", "end": "2023-11-26" } ] } }. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--config-file' is optional. the maintenance configuration json file.. The parameter '--day-of-month' is optional. specify on which day of the month the maintenance occurs. e.g. 1 indicates the 1st of the month. applicable to absolute monthly schedule type only.. The parameter '--day-of-week' is optional. specify on which day of the week the maintenance occurs. e.g. "monday". applicable to weekly and relative monthly schedule types.. The parameter '--duration' is optional. the length of maintenance window range from 4 to 24 hours.. The parameter '--interval-days' is optional. the number of days between each set of occurrences for daily schedule type.. The parameter '--interval-months' is optional. the number of months between each set of occurrences. applicable to absolute and relative monthly schedule types.. The parameter '--interval-weeks' is optional. the number of weeks between each set of occurrences. applicable to weekly schedule types only.. The parameter '--schedule-type' is optional. choose either 'daily', 'weekly', 'absolutemonthly' or 'relativemonthly' for your maintenance schedule. only applicable to 'aksmanagedautoupgradeschedule' and 'aksmanagednodeosupgradeschedule' maintenance configuration.. The parameter '--start-date' is optional. the date the maintenance configuration activates. if not specified, the maintenance window will be active right away.".. The parameter '--start-hour' is optional. the start time of 1 hour window which maintenance is allowd. e.g. 1 means it's allowd between 1:00 am and 2:00 am. applicable to default maintenance configuration only.. The parameter '--start-time' is optional. the start time of the maintenance window. accepted values are from '00:00' to '23:59'. '--utc-offset' applies to this field. for example, '02:00' with '--utc-offset +02:00' means utc time '00:00'.. The parameter '--utc-offset' is optional. the utc offset in format +/-hh:mm. for example, '+05:30' for ist and '-07:00' for pst. if not specified, the default is '+00:00'.. The parameter '--week-index' is optional. specify on which instance of the allowed days specified in '--day-of-week' the maintenance occurs. applicable to relative monthly schedule type only.. The parameter '--weekday' is optional. a day in week on which maintenance is allowed. e.g. monday. applicable to default maintenance configuration only..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_add aks preview'.The syntax is: az aks maintenanceconfiguration add --cluster-name --name --resource-group [--config-file] [--day-of-month] [--day-of-week] [--duration] [--interval-days] [--interval-months] [--interval-weeks] [--schedule-type {absolutemonthly, daily, relativemonthly, weekly}] [--start-date] [--start-hour] [--start-time] [--utc-offset] [--week-index {first, fourth, last, second, third}] [--weekday]. The 1th example of the child command would be to use it to 'add default maintenance configuration with weekday and start hour', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --weekday Monday --start-hour 1 The maintenance is allowed on Monday 1:00am to 2:00am. The 2th example of the child command would be to use it to 'add default maintenance configuration with weekday the maintenance is allowd on any time of that day', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --weekday Monday The maintenance is allowed on Monday.. The 3th example of the child command would be to use it to 'add default maintenance configuration with maintenance configuration json file', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n default --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on UTC time Tuesday 1:00am - 3:00 am and Wednesday 1:00am - 2:00am, 6:00am-7:00am No maintenance is allowed from 2020-11-26T03:00:00Z to 2020-11-30T12:00:00Z and from 2020-12-26T03:00:00Z to 2020-12-26T12:00:00Z even if they are allowed in the above weekly setting { "timeInWeek": [ { "day": "Tuesday", "hourSlots": [ 1, 2 ] }, { "day": "Wednesday", "hourSlots": [ 1, 6 ] } ], "notAllowedTime": [ { "start": "2021-11-26T03:00:00Z", "end": "2021-11-30T12:00:00Z" }, { "start": "2021-12-26T03:00:00Z", "end": "2021-12-26T12:00:00Z" } ] }. The 4th example of the child command would be to use it to 'add aksmanagednodeosupgradeschedule maintenance configuration with daily schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Daily --interval-days 2 --duration 12 --utc-offset=-08:00 --start-date 2023-01-16 --start-time 00:00 The maintenance is allowed from 00:00 to 12:00 (adjusted with UTC offset: -08:00) every two days, and this configuration will be effective from 2023-01-16.. The 5th example of the child command would be to use it to 'add aksmanagednodeosupgradeschedule maintenance configuration with weekly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Weekly --day-of-week Friday --interval-weeks 3 --duration 8 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on Friday from 09:30 to 17:30 (adjusted with UTC offset: +05:30) every three weeks, and this configuration will be effective from 2023-01-16.. The 6th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with absolute monthly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type AbsoluteMonthly --day-of-month 15 --interval-months 1 --duration 6 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the 15th of the month from 09:30 to 15:30 (adjusted with UTC offset: +05:30) every month, and this configuration will be effective from 2023-01-16.. The 7th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with relative monthly schedule', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type RelativeMonthly --day-of-week Tuesday --week-index Last --interval-months 3 --duration 6 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the last Tuesday from 09:30 to 15:30 in default UTC time every 3 months, and this configuration will be effective from 2023-01-16.. The 8th example of the child command would be to use it to 'add aksmanagedautoupgradeschedule maintenance configuration with json file', the syntax is: az aks maintenanceconfiguration add -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on the 1st of the month from 09:00 to 13:00 (adjusted with UTC offset: -08:00) every 3 months, and this configuration will be effective from 2023-01-16. No maintenance is allowed from 2022-12-23 to 2023-01-05 and from 2023-11-23 to 2023-11-26 even if they are allowed in the above monthly setting { "maintenanceWindow": { "schedule": { "absoluteMonthly": { "intervalMonths": 3, "dayOfMonth": 1 } }, "durationHours": 4, "utcOffset": "-08:00", "startTime": "09:00", "notAllowedDates": [ { "start": "2022-12-23", "end": "2023-01-05" }, { "start": "2023-11-23", "end": "2023-11-26" } ] } }. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--config-file' is optional. the maintenance configuration json file.. The parameter '--day-of-month' is optional. specify on which day of the month the maintenance occurs. e.g. 1 indicates the 1st of the month. applicable to absolute monthly schedule type only.. The parameter '--day-of-week' is optional. specify on which day of the week the maintenance occurs. e.g. "monday". applicable to weekly and relative monthly schedule types.. The parameter '--duration' is optional. the length of maintenance window range from 4 to 24 hours.. The parameter '--interval-days' is optional. the number of days between each set of occurrences for daily schedule type.. The parameter '--interval-months' is optional. the number of months between each set of occurrences. applicable to absolute and relative monthly schedule types.. The parameter '--interval-weeks' is optional. the number of weeks between each set of occurrences. applicable to weekly schedule types only.. The parameter '--schedule-type' is optional. choose either 'daily', 'weekly', 'absolutemonthly' or 'relativemonthly' for your maintenance schedule. only applicable to 'aksmanagedautoupgradeschedule' and 'aksmanagednodeosupgradeschedule' maintenance configuration.. The parameter '--start-date' is optional. the date the maintenance configuration activates. if not specified, the maintenance window will be active right away.".. The parameter '--start-hour' is optional. the start time of 1 hour window which maintenance is allowd. e.g. 1 means it's allowd between 1:00 am and 2:00 am. applicable to default maintenance configuration only.. The parameter '--start-time' is optional. the start time of the maintenance window. accepted values are from '00:00' to '23:59'. '--utc-offset' applies to this field. for example, '02:00' with '--utc-offset +02:00' means utc time '00:00'.. The parameter '--utc-offset' is optional. the utc offset in format +/-hh:mm. for example, '+05:30' for ist and '-07:00' for pst. if not specified, the default is '+00:00'.. The parameter '--week-index' is optional. specify on which instance of the allowed days specified in '--day-of-week' the maintenance occurs. applicable to relative monthly schedule type only.. The parameter '--weekday' is optional. a day in week on which maintenance is allowed. e.g. monday. applicable to default maintenance configuration only..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_delete'.The syntax is: az aks maintenanceconfiguration delete --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_delete aks preview'.The syntax is: az aks maintenanceconfiguration delete --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_list'.The syntax is: az aks maintenanceconfiguration list --cluster-name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_list aks preview'.The syntax is: az aks maintenanceconfiguration list --cluster-name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_show'.The syntax is: az aks maintenanceconfiguration show --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_show aks preview'.The syntax is: az aks maintenanceconfiguration show --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_update'.The syntax is: az aks maintenanceconfiguration update --cluster-name --name --resource-group [--config-file] [--day-of-month] [--day-of-week] [--duration] [--interval-days] [--interval-months] [--interval-weeks] [--schedule-type {absolutemonthly, daily, relativemonthly, weekly}] [--start-date] [--start-hour] [--start-time] [--utc-offset] [--week-index {first, fourth, last, second, third}] [--weekday]. The 1th example of the child command would be to use it to 'update default maintenance configuration with weekday and start hour', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --weekday Monday --start-hour 1 The maintenance is allowed on Monday 1:00am to 2:00am. The 2th example of the child command would be to use it to 'update default maintenance configuration with weekday the maintenance is allowd on any time of that day', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --weekday Monday The maintenance is allowed on Monday.. The 3th example of the child command would be to use it to 'update default maintenance configuration with maintenance configuration json file', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on UTC time Tuesday 1:00am - 3:00 am and Wednesday 1:00am - 2:00am, 6:00am-7:00am No maintenance is allowed from 2020-11-26T03:00:00Z to 2020-11-30T12:00:00Z and from 2020-12-26T03:00:00Z to 2020-12-26T12:00:00Z even if they are allowed in the above weekly setting { "timeInWeek": [ { "day": "Tuesday", "hourSlots": [ 1, 2 ] }, { "day": "Wednesday", "hourSlots": [ 1, 6 ] } ], "notAllowedTime": [ { "start": "2021-11-26T03:00:00Z", "end": "2021-11-30T12:00:00Z" }, { "start": "2021-12-26T03:00:00Z", "end": "2021-12-26T12:00:00Z" } ] }. The 4th example of the child command would be to use it to 'update aksmanagednodeosupgradeschedule maintenance configuration with daily schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Daily --interval-days 2 --duration 12 --utc-offset=-08:00 --start-date 2023-01-16 --start-time 00:00 The maintenance is allowed from 00:00 to 12:00 (adjusted with UTC offset: -08:00) every two days. This configuration will be effective from 2023-01-16.. The 5th example of the child command would be to use it to 'update aksmanagednodeosupgradeschedule maintenance configuration with weekly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Weekly --day-of-week Friday --interval-weeks 3 --duration 8 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on Friday from 09:30 to 17:30 (adjusted with UTC offset: +05:30) every three weeks. This configuration will be effective from 2023-01-16.. The 6th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with absolute monthly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type AbsoluteMonthly --day-of-month 15 --interval-months 1 --duration 6 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the 15th of the month from 09:30 to 15:30 (adjusted with UTC offset: +05:30) every month. This configuration will be effective from 2023-01-16.. The 7th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with relative monthly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type RelativeMonthly --day-of-week Tuesday --week-index Last --interval-months 3 --duration 6 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the last Tuesday from 09:30 to 15:30 in default UTC time every 3 months. This configuration will be effective from 2023-01-16.. The 8th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with json file', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on the 1st of the month from 09:00 to 13:00 (adjusted with UTC offset: -08:00) every 3 months, and this configuration will be effective from 2023-01-16. No maintenance is allowed from 2022-12-23 to 2023-01-05 and from 2023-11-23 to 2023-11-26 even if they are allowed in the above monthly setting { "maintenanceWindow": { "schedule": { "absoluteMonthly": { "intervalMonths": 3, "dayOfMonth": 1 } }, "durationHours": 4, "utcOffset": "-08:00", "startTime": "09:00", "notAllowedDates": [ { "start": "2022-12-23", "end": "2023-01-05" }, { "start": "2023-11-23", "end": "2023-11-26" } ] } }. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--config-file' is optional. the maintenance configuration json file.. The parameter '--day-of-month' is optional. specify on which day of the month the maintenance occurs. e.g. 1 indicates the 1st of the month. applicable to absolute monthly schedule type only.. The parameter '--day-of-week' is optional. specify on which day of the week the maintenance occurs. e.g. "monday". applicable to weekly and relative monthly schedule types.. The parameter '--duration' is optional. the length of maintenance window range from 4 to 24 hours.. The parameter '--interval-days' is optional. the number of days between each set of occurrences for daily schedule type.. The parameter '--interval-months' is optional. the number of months between each set of occurrences. applicable to absolute and relative monthly schedule types.. The parameter '--interval-weeks' is optional. the number of weeks between each set of occurrences. applicable to weekly schedule types only.. The parameter '--schedule-type' is optional. choose either 'daily', 'weekly', 'absolutemonthly' or 'relativemonthly' for your maintenance schedule. only applicable to 'aksmanagedautoupgradeschedule' and 'aksmanagednodeosupgradeschedule' maintenance configuration.. The parameter '--start-date' is optional. the date the maintenance configuration activates. if not specified, the maintenance window will be active right away.".. The parameter '--start-hour' is optional. the start time of 1 hour window which maintenance is allowd. e.g. 1 means it's allowd between 1:00 am and 2:00 am. applicable to default maintenance configuration only.. The parameter '--start-time' is optional. the start time of the maintenance window. accepted values are from '00:00' to '23:59'. '--utc-offset' applies to this field. for example, '02:00' with '--utc-offset +02:00' means utc time '00:00'.. The parameter '--utc-offset' is optional. the utc offset in format +/-hh:mm. for example, '+05:30' for ist and '-07:00' for pst. if not specified, the default is '+00:00'.. The parameter '--week-index' is optional. specify on which instance of the allowed days specified in '--day-of-week' the maintenance occurs. applicable to relative monthly schedule type only.. The parameter '--weekday' is optional. a day in week on which maintenance is allowed. e.g. monday. applicable to default maintenance configuration only..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_maintenanceconfiguration'. This group of commands could 'commands to manage maintenance configurations in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_maintenanceconfiguration_update aks preview'.The syntax is: az aks maintenanceconfiguration update --cluster-name --name --resource-group [--config-file] [--day-of-month] [--day-of-week] [--duration] [--interval-days] [--interval-months] [--interval-weeks] [--schedule-type {absolutemonthly, daily, relativemonthly, weekly}] [--start-date] [--start-hour] [--start-time] [--utc-offset] [--week-index {first, fourth, last, second, third}] [--weekday]. The 1th example of the child command would be to use it to 'update default maintenance configuration with weekday and start hour', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --weekday Monday --start-hour 1 The maintenance is allowed on Monday 1:00am to 2:00am. The 2th example of the child command would be to use it to 'update default maintenance configuration with weekday the maintenance is allowd on any time of that day', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --weekday Monday The maintenance is allowed on Monday.. The 3th example of the child command would be to use it to 'update default maintenance configuration with maintenance configuration json file', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n default --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on UTC time Tuesday 1:00am - 3:00 am and Wednesday 1:00am - 2:00am, 6:00am-7:00am No maintenance is allowed from 2020-11-26T03:00:00Z to 2020-11-30T12:00:00Z and from 2020-12-26T03:00:00Z to 2020-12-26T12:00:00Z even if they are allowed in the above weekly setting { "timeInWeek": [ { "day": "Tuesday", "hourSlots": [ 1, 2 ] }, { "day": "Wednesday", "hourSlots": [ 1, 6 ] } ], "notAllowedTime": [ { "start": "2021-11-26T03:00:00Z", "end": "2021-11-30T12:00:00Z" }, { "start": "2021-12-26T03:00:00Z", "end": "2021-12-26T12:00:00Z" } ] }. The 4th example of the child command would be to use it to 'update aksmanagednodeosupgradeschedule maintenance configuration with daily schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Daily --interval-days 2 --duration 12 --utc-offset=-08:00 --start-date 2023-01-16 --start-time 00:00 The maintenance is allowed from 00:00 to 12:00 (adjusted with UTC offset: -08:00) every two days. This configuration will be effective from 2023-01-16.. The 5th example of the child command would be to use it to 'update aksmanagednodeosupgradeschedule maintenance configuration with weekly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedNodeOSUpgradeSchedule --schedule-type Weekly --day-of-week Friday --interval-weeks 3 --duration 8 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on Friday from 09:30 to 17:30 (adjusted with UTC offset: +05:30) every three weeks. This configuration will be effective from 2023-01-16.. The 6th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with absolute monthly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type AbsoluteMonthly --day-of-month 15 --interval-months 1 --duration 6 --utc-offset +05:30 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the 15th of the month from 09:30 to 15:30 (adjusted with UTC offset: +05:30) every month. This configuration will be effective from 2023-01-16.. The 7th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with relative monthly schedule', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --schedule-type RelativeMonthly --day-of-week Tuesday --week-index Last --interval-months 3 --duration 6 --start-date 2023-01-16 --start-time 09:30 The maintenance is allowed on the last Tuesday from 09:30 to 15:30 in default UTC time every 3 months. This configuration will be effective from 2023-01-16.. The 8th example of the child command would be to use it to 'update aksmanagedautoupgradeschedule maintenance configuration with json file', the syntax is: az aks maintenanceconfiguration update -g MyResourceGroup --cluster-name test1 -n aksManagedAutoUpgradeSchedule --config-file ./test.json The content of json file looks below. It means the maintenance is allowed on the 1st of the month from 09:00 to 13:00 (adjusted with UTC offset: -08:00) every 3 months, and this configuration will be effective from 2023-01-16. No maintenance is allowed from 2022-12-23 to 2023-01-05 and from 2023-11-23 to 2023-11-26 even if they are allowed in the above monthly setting { "maintenanceWindow": { "schedule": { "absoluteMonthly": { "intervalMonths": 3, "dayOfMonth": 1 } }, "durationHours": 4, "utcOffset": "-08:00", "startTime": "09:00", "notAllowedDates": [ { "start": "2022-12-23", "end": "2023-01-05" }, { "start": "2023-11-23", "end": "2023-11-26" } ] } }. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the config name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--config-file' is optional. the maintenance configuration json file.. The parameter '--day-of-month' is optional. specify on which day of the month the maintenance occurs. e.g. 1 indicates the 1st of the month. applicable to absolute monthly schedule type only.. The parameter '--day-of-week' is optional. specify on which day of the week the maintenance occurs. e.g. "monday". applicable to weekly and relative monthly schedule types.. The parameter '--duration' is optional. the length of maintenance window range from 4 to 24 hours.. The parameter '--interval-days' is optional. the number of days between each set of occurrences for daily schedule type.. The parameter '--interval-months' is optional. the number of months between each set of occurrences. applicable to absolute and relative monthly schedule types.. The parameter '--interval-weeks' is optional. the number of weeks between each set of occurrences. applicable to weekly schedule types only.. The parameter '--schedule-type' is optional. choose either 'daily', 'weekly', 'absolutemonthly' or 'relativemonthly' for your maintenance schedule. only applicable to 'aksmanagedautoupgradeschedule' and 'aksmanagednodeosupgradeschedule' maintenance configuration.. The parameter '--start-date' is optional. the date the maintenance configuration activates. if not specified, the maintenance window will be active right away.".. The parameter '--start-hour' is optional. the start time of 1 hour window which maintenance is allowd. e.g. 1 means it's allowd between 1:00 am and 2:00 am. applicable to default maintenance configuration only.. The parameter '--start-time' is optional. the start time of the maintenance window. accepted values are from '00:00' to '23:59'. '--utc-offset' applies to this field. for example, '02:00' with '--utc-offset +02:00' means utc time '00:00'.. The parameter '--utc-offset' is optional. the utc offset in format +/-hh:mm. for example, '+05:30' for ist and '-07:00' for pst. if not specified, the default is '+00:00'.. The parameter '--week-index' is optional. specify on which instance of the allowed days specified in '--day-of-week' the maintenance occurs. applicable to relative monthly schedule type only.. The parameter '--weekday' is optional. a day in week on which maintenance is allowed. e.g. monday. applicable to default maintenance configuration only..
database/aks/maintenanceconfiguration.yml
There is a command group 'az_aks_machine'. This group of commands could 'get information about machines in a nodepool of a managed clusters'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_machine_list'.The syntax is: az aks machine list --cluster-name --nodepool-name --resource-group. The parameter '--cluster-name' is required. It is used to name of the managed cluster.. The parameter '--nodepool-name' is required. It is used to name of the agentpool of a managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/machine.yml
There is a command group 'az_aks_machine'. This group of commands could 'get information about machines in a nodepool of a managed clusters'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_machine_show'.The syntax is: az aks machine show --cluster-name --machine-name --nodepool-name --resource-group. The parameter '--cluster-name' is required. It is used to name of the managed cluster.. The parameter '--machine-name' is required. It is used to get ip addresses, hostname for a specific machine in an agentpool.. The parameter '--nodepool-name' is required. It is used to name of the agentpool of a managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/machine.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_disable'.The syntax is: az aks mesh disable --name --resource-group [--no-wait] [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_disable aks preview'.The syntax is: az aks mesh disable --name --resource-group [--no-wait] [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_disable egress gateway'.The syntax is: az aks mesh disable-egress-gateway --name --resource-group [--no-wait] [--yes]. The 1th example of the child command would be to use it to 'disable an egress gateway', the syntax is: az aks mesh disable-egress-gateway --resource-group MyResourceGroup --name MyManagedCluster. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_disable ingress gateway'.The syntax is: az aks mesh disable-ingress-gateway --ingress-gateway-type {external, internal} --name --resource-group [--no-wait] [--yes]. The 1th example of the child command would be to use it to 'disable an internal ingress gateway', the syntax is: az aks mesh disable-ingress-gateway --resource-group MyResourceGroup --name MyManagedCluster --ingress-gateway-type Internal. The parameter '--ingress-gateway-type' is required. It is used to specify the type of ingress gateway.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_disable ingress gateway aks preview'.The syntax is: az aks mesh disable-ingress-gateway --ingress-gateway-type {external, internal} --name --resource-group [--no-wait] [--yes]. The 1th example of the child command would be to use it to 'disable an internal ingress gateway', the syntax is: az aks mesh disable-ingress-gateway --resource-group MyResourceGroup --name MyManagedCluster --ingress-gateway-type Internal. The parameter '--ingress-gateway-type' is required. It is used to specify the type of ingress gateway.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_enable'.The syntax is: az aks mesh enable --name --resource-group [--ca-cert-object-name] [--ca-key-object-name] [--cert-chain-object-name] [--key-vault-id] [--no-wait] [--revision] [--root-cert-object-name]. The 1th example of the child command would be to use it to 'enable azure service mesh with selfsigned ca', the syntax is: az aks mesh enable --resource-group MyResourceGroup --name MyManagedCluster. The 2th example of the child command would be to use it to 'enable azure service mesh with plugin ca', the syntax is: az aks mesh enable --resource-group MyResourceGroup --name MyManagedCluster --key-vault-id /subscriptions/00000/resourceGroups/foo/providers/Microsoft.KeyVault/vaults/foo --ca-cert-object-name my-ca-cert --ca-key-object-name my-ca-key --cert-chain-object-name my-cert-chain --root-cert-object-name my-root-cert. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--ca-cert-object-name' is optional. intermediate cert object name in the azure keyvault.. The parameter '--ca-key-object-name' is optional. intermediate key object name in the azure keyvault.. The parameter '--cert-chain-object-name' is optional. cert chain object name in the azure keyvault.. The parameter '--key-vault-id' is optional. the azure keyvault id with plugin ca info.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--revision' is optional. azure service mesh revision to install.. The parameter '--root-cert-object-name' is optional. root cert object name in the azure keyvault..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_enable aks preview'.The syntax is: az aks mesh enable --name --resource-group [--ca-cert-object-name] [--ca-key-object-name] [--cert-chain-object-name] [--key-vault-id] [--no-wait] [--revision] [--root-cert-object-name]. The 1th example of the child command would be to use it to 'enable azure service mesh with selfsigned ca', the syntax is: az aks mesh enable --resource-group MyResourceGroup --name MyManagedCluster. The 2th example of the child command would be to use it to 'enable azure service mesh with plugin ca', the syntax is: az aks mesh enable --resource-group MyResourceGroup --name MyManagedCluster --key-vault-id /subscriptions/8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8/resourceGroups/foo/providers/Microsoft.KeyVault/vaults/foo --ca-cert-object-name my-ca-cert --ca-key-object-name my-ca-key --cert-chain-object-name my-cert-chain --root-cert-object-name my-root-cert. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--ca-cert-object-name' is optional. intermediate cert object name in the azure keyvault.. The parameter '--ca-key-object-name' is optional. intermediate key object name in the azure keyvault.. The parameter '--cert-chain-object-name' is optional. cert chain object name in the azure keyvault.. The parameter '--key-vault-id' is optional. the azure keyvault id with plugin ca info.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--revision' is optional. azure service mesh revision to install.. The parameter '--root-cert-object-name' is optional. root cert object name in the azure keyvault..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_enable egress gateway'.The syntax is: az aks mesh enable-egress-gateway --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'enable an egress gateway', the syntax is: az aks mesh enable-egress-gateway --resource-group MyResourceGroup --name MyManagedCluster. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_enable ingress gateway'.The syntax is: az aks mesh enable-ingress-gateway --ingress-gateway-type {external, internal} --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'enable an internal ingress gateway', the syntax is: az aks mesh enable-ingress-gateway --resource-group MyResourceGroup --name MyManagedCluster --ingress-gateway-type Internal. The parameter '--ingress-gateway-type' is required. It is used to specify the type of ingress gateway.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_enable ingress gateway aks preview'.The syntax is: az aks mesh enable-ingress-gateway --ingress-gateway-type {external, internal} --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'enable an internal ingress gateway', the syntax is: az aks mesh enable-ingress-gateway --resource-group MyResourceGroup --name MyManagedCluster --ingress-gateway-type Internal. The parameter '--ingress-gateway-type' is required. It is used to specify the type of ingress gateway.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_get revisions'.The syntax is: az aks mesh get-revisions --location. The 1th example of the child command would be to use it to 'discover azure service mesh revisions', the syntax is: az aks mesh get-revisions --location westus2. The parameter '--location -l' is required. It is used to location in which to discover available azure service mesh revisions..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_get revisions aks preview'.The syntax is: az aks mesh get-revisions --location. The 1th example of the child command would be to use it to 'discover azure service mesh revisions', the syntax is: az aks mesh get-revisions --location westus2. The parameter '--location -l' is required. It is used to location in which to discover available azure service mesh revisions..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_get upgrades'.The syntax is: az aks mesh get-upgrades --name --resource-group. The 1th example of the child command would be to use it to 'discover azure service mesh upgrades', the syntax is: az aks mesh get-upgrades --resource-group MyResourceGroup --name MyManagedCluster. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/mesh.yml
There is a command group 'az_aks_mesh'. This group of commands could 'commands to manage azure service mesh'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_mesh_get upgrades aks preview'.The syntax is: az aks mesh get-upgrades --name --resource-group. The 1th example of the child command would be to use it to 'discover azure service mesh upgrades', the syntax is: az aks mesh get-upgrades --resource-group MyResourceGroup --name MyManagedCluster. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/mesh.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_delete'.The syntax is: az aks connection delete [--connection] [--id] [--name] [--no-wait] [--resource-group] [--yes]. The 1th example of the child command would be to use it to 'delete a aks connection interactively', the syntax is: az aks connection delete. The 2th example of the child command would be to use it to 'delete a aks connection by connection name', the syntax is: az aks connection delete -g ClusterRG -n MyCluster --connection MyConnection. The 3th example of the child command would be to use it to 'delete a aks connection by connection id', the syntax is: az aks connection delete --id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.Web/sites/{site}/providers/Microsoft.ServiceLinker/linkers/{linker}. The parameter '--connection' is optional. name of the aks connection.. The parameter '--id' is optional. the resource id of the connection. ['--resource-group', '--name', '--connection'] are required if '--id' is not specified.. The parameter '--name -n' is optional. name of the managed cluster. required if '--id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--id' is not specified.none.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_list'.The syntax is: az aks connection list [--name] [--resource-group] [--source-id]. The 1th example of the child command would be to use it to 'list aks connections interactively', the syntax is: az aks connection list. The 2th example of the child command would be to use it to 'list aks connections by source resource name', the syntax is: az aks connection list -g ClusterRG -n MyCluster. The 3th example of the child command would be to use it to 'list aks connections by source resource id', the syntax is: az aks connection list --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster}. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_list configuration'.The syntax is: az aks connection list-configuration [--connection] [--id] [--name] [--resource-group]. The 1th example of the child command would be to use it to 'list a connection s source configurations interactively', the syntax is: az aks connection list-configuration. The 2th example of the child command would be to use it to 'list a connection s source configurations by connection name', the syntax is: az aks connection list-configuration -g ClusterRG -n MyCluster --connection MyConnection. The 3th example of the child command would be to use it to 'list a connection s source configurations by connection id', the syntax is: az aks connection list-configuration --id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.Web/sites/{site}/providers/Microsoft.ServiceLinker/linkers/{linker}. The parameter '--connection' is optional. name of the aks connection.. The parameter '--id' is optional. the resource id of the connection. ['--resource-group', '--name', '--connection'] are required if '--id' is not specified.. The parameter '--name -n' is optional. name of the managed cluster. required if '--id' is not specified.none.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--id' is not specified.none..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_list support types'.The syntax is: az aks connection list-support-types [--target-type {app-insights, appconfig, confluent-cloud, cosmos-cassandra, cosmos-gremlin, cosmos-mongo, cosmos-sql, cosmos-table, eventhub, keyvault, mysql, mysql-flexible, postgres, postgres-flexible, redis, redis-enterprise, servicebus, signalr, sql, storage-blob, storage-file, storage-queue, storage-table, webpubsub}]. The 1th example of the child command would be to use it to 'list all aks supported target resource types and auth types', the syntax is: az aks connection list-support-types -o table. The 2th example of the child command would be to use it to 'list aks supported auth types for a specific target resource type', the syntax is: az aks connection list-support-types --target-type storage-blob -o table. The parameter '--target-type -t' is optional. the target resource type..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_show'.The syntax is: az aks connection show [--connection] [--id] [--name] [--resource-group]. The 1th example of the child command would be to use it to 'get a connection interactively', the syntax is: az aks connection show. The 2th example of the child command would be to use it to 'get a connection by connection name', the syntax is: az aks connection show -g ClusterRG -n MyCluster --connection MyConnection. The 3th example of the child command would be to use it to 'get a connection by connection id', the syntax is: az aks connection show --id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.Web/sites/{site}/providers/Microsoft.ServiceLinker/linkers/{linker}. The parameter '--connection' is optional. name of the aks connection.. The parameter '--id' is optional. the resource id of the connection. ['--resource-group', '--name', '--connection'] are required if '--id' is not specified.. The parameter '--name -n' is optional. name of the managed cluster. required if '--id' is not specified.none.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--id' is not specified.none..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_validate'.The syntax is: az aks connection validate [--connection] [--id] [--name] [--resource-group]. The 1th example of the child command would be to use it to 'validate a connection interactively', the syntax is: az aks connection validate. The 2th example of the child command would be to use it to 'validate a connection by connection name', the syntax is: az aks connection validate -g ClusterRG -n MyCluster --connection MyConnection. The 3th example of the child command would be to use it to 'validate a connection by connection id', the syntax is: az aks connection validate --id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.Web/sites/{site}/providers/Microsoft.ServiceLinker/linkers/{linker}. The parameter '--connection' is optional. name of the aks connection.. The parameter '--id' is optional. the resource id of the connection. ['--resource-group', '--name', '--connection'] are required if '--id' is not specified.. The parameter '--name -n' is optional. name of the managed cluster. required if '--id' is not specified.none.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--id' is not specified.none..
database/aks/connection.yml
There is a command group 'az_aks_connection'. This group of commands could 'commands to manage aks connections'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_wait'.The syntax is: az aks connection wait [--connection] [--created] [--custom] [--deleted] [--exists] [--id] [--interval] [--name] [--resource-group] [--timeout] [--updated]. The 1th example of the child command would be to use it to 'wait until the connection is successfully created', the syntax is: az aks connection wait --id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.Web/sites/{site}/providers/Microsoft.ServiceLinker/linkers/{linker} --created. The parameter '--connection' is optional. name of the aks connection.. The parameter '--created' is optional. wait until created with 'provisioningstate' at 'succeeded'.. The parameter '--custom' is optional. wait until the condition satisfies a custom jmespath query. e.g. provisioningstate!='inprogress', instanceview.statuses[?code=='powerstate/running'].. The parameter '--deleted' is optional. wait until deleted.. The parameter '--exists' is optional. wait until the resource exists.. The parameter '--id' is optional. the resource id of the connection. ['--resource-group', '--name', '--connection'] are required if '--id' is not specified.. The parameter '--interval' is optional. polling interval in seconds.. The parameter '--name -n' is optional. name of the managed cluster. required if '--id' is not specified.none.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--id' is not specified.none.. The parameter '--timeout' is optional. maximum wait in seconds.. The parameter '--updated' is optional. wait until updated with provisioningstate at 'succeeded'..
database/aks/connection.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_disable'.The syntax is: az aks addon disable --addon --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'disable the monitoring addon', the syntax is: az aks addon disable -g myResourceGroup -n myAKSCluster -a monitoring. The parameter '--addon -a' is required. It is used to specify the kubernetes addon to disable.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/addon.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_enable'.The syntax is: az aks addon enable --addon --name --resource-group [--appgw-id] [--appgw-name] [--appgw-subnet-cidr] [--appgw-subnet-id] [--appgw-watch-namespace] [--data-collection-settings] [--dns-zone-resource-ids] [--enable-msi-auth-for-monitoring {false, true}] [--enable-secret-rotation] [--enable-sgxquotehelper] [--enable-syslog {false, true}] [--no-wait] [--rotation-poll-interval] [--subnet-name] [--workspace-resource-id]. The 1th example of the child command would be to use it to 'enable a kubernetes addon autogenerated', the syntax is: az aks addon enable --addon virtual-node --name MyManagedCluster --resource-group MyResourceGroup --subnet-name VirtualNodeSubnet. The 2th example of the child command would be to use it to 'enable ingress appgw addon with subnet prefix', the syntax is: az aks addon enable --name MyManagedCluster --resource-group MyResourceGroup --addon ingress-appgw --appgw-subnet-cidr 10.2.0.0/16 --appgw-name gateway. The 3th example of the child command would be to use it to 'enable open service mesh addon', the syntax is: az aks addon enable --name MyManagedCluster --resource-group MyResourceGroup -a open-service-mesh. The parameter '--addon -a' is required. It is used to specify the kubernetes addon to enable.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--appgw-id' is optional. resource id of an existing application gateway to use with agic. use with ingress-azure addon.. The parameter '--appgw-name' is optional. name of the application gateway to create/use in the node resource group. use with ingress-azure addon.. The parameter '--appgw-subnet-cidr' is optional. subnet cidr to use for a new subnet created to deploy the application gateway. use with ingress-azure addon.. The parameter '--appgw-subnet-id' is optional. resource id of an existing subnet used to deploy the application gateway. use with ingress-azure addon.. The parameter '--appgw-watch-namespace' is optional. specify the namespace, which agic should watch. this could be a single string value, or a comma-separated list of namespaces. use with ingress-azure addon.. The parameter '--data-collection-settings' is optional. path to json file containing data collection settings for monitoring addon.. The parameter '--dns-zone-resource-ids' is optional. a comma separated list of resource ids of the dns zone resource to use with the web_application_routing addon.. The parameter '--enable-msi-auth-for-monitoring' is optional. send monitoring data to log analytics using the cluster's assigned identity (instead of the log analytics workspace's shared key).. The parameter '--enable-secret-rotation' is optional. enable secret rotation. use with azure-keyvault-secrets-provider addon.. The parameter '--enable-sgxquotehelper' is optional. enable sgx quote helper for confcom addon.. The parameter '--enable-syslog' is optional. enable syslog data collection for monitoring addon.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--rotation-poll-interval' is optional. set interval of rotation poll. use with azure-keyvault-secrets-provider addon.. The parameter '--subnet-name -s' is optional. the subnet name for the virtual node to use.. The parameter '--workspace-resource-id' is optional. the resource id of an existing log analytics workspace to use for storing monitoring data..
database/aks/addon.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_list'.The syntax is: az aks addon list --name --resource-group. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/addon.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_list available'.The syntax is: az aks addon list-available.
database/aks/addon.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_show'.The syntax is: az aks addon show --addon --name --resource-group. The 1th example of the child command would be to use it to 'show configuration for monitoring addon', the syntax is: az aks addon show -g myResourceGroup -n myAKSCluster -a monitoring. The parameter '--addon -a' is required. It is used to specify the kubernetes addon.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/addon.yml
There is a command group 'az_aks_addon'. This group of commands could 'commands to manage and view single addon conditions'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_addon_update'.The syntax is: az aks addon update --addon --name --resource-group [--appgw-id] [--appgw-name] [--appgw-subnet-cidr] [--appgw-subnet-id] [--appgw-watch-namespace] [--data-collection-settings] [--dns-zone-resource-ids] [--enable-msi-auth-for-monitoring {false, true}] [--enable-secret-rotation] [--enable-sgxquotehelper] [--enable-syslog {false, true}] [--no-wait] [--rotation-poll-interval] [--subnet-name] [--workspace-resource-id]. The 1th example of the child command would be to use it to 'update a kubernetes addon autogenerated', the syntax is: az aks addon update --addon virtual-node --name MyManagedCluster --resource-group MyResourceGroup --subnet-name VirtualNodeSubnet. The 2th example of the child command would be to use it to 'update ingress appgw addon with subnet prefix', the syntax is: az aks addon update --name MyManagedCluster --resource-group MyResourceGroup --addon ingress-appgw --appgw-subnet-cidr 10.2.0.0/16 --appgw-name gateway. The 3th example of the child command would be to use it to 'update monitoring addon with workspace resource id', the syntax is: az aks addon update -g $rg -n $cn -a monitoring --workspace-resource-id=/subscriptions/0000000-00000000-00000-000-000/resourcegroups/myresourcegroup/providers/microsoft.operationalinsights/workspaces/defaultlaworkspace. The parameter '--addon -a' is required. It is used to specify the kubernetes addon to update.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--appgw-id' is optional. resource id of an existing application gateway to use with agic. use with ingress-azure addon.. The parameter '--appgw-name' is optional. name of the application gateway to create/use in the node resource group. use with ingress-azure addon.. The parameter '--appgw-subnet-cidr' is optional. subnet cidr to use for a new subnet created to deploy the application gateway. use with ingress-azure addon.. The parameter '--appgw-subnet-id' is optional. resource id of an existing subnet used to deploy the application gateway. use with ingress-azure addon.. The parameter '--appgw-watch-namespace' is optional. specify the namespace, which agic should watch. this could be a single string value, or a comma-separated list of namespaces. use with ingress-azure addon.. The parameter '--data-collection-settings' is optional. path to json file containing data collection settings for monitoring addon.. The parameter '--dns-zone-resource-ids' is optional. a comma separated list of resource ids of the dns zone resource to use with the web_application_routing addon.. The parameter '--enable-msi-auth-for-monitoring' is optional. send monitoring data to log analytics using the cluster's assigned identity (instead of the log analytics workspace's shared key).. The parameter '--enable-secret-rotation' is optional. enable secret rotation. use with azure-keyvault-secrets-provider addon.. The parameter '--enable-sgxquotehelper' is optional. enable sgx quote helper for confcom addon.. The parameter '--enable-syslog' is optional. enable syslog data collection for monitoring addon.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--rotation-poll-interval' is optional. set interval of rotation poll. use with azure-keyvault-secrets-provider addon.. The parameter '--subnet-name -s' is optional. the subnet name for the virtual node to use.. The parameter '--workspace-resource-id' is optional. the resource id of an existing log analytics workspace to use for storing monitoring data..
database/aks/addon.yml
There is a command group 'az_aks_oidc issuer'. This group of commands could 'oidc issuer related commands'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_oidc issuer_rotate signing keys'.The syntax is: az aks oidc-issuer rotate-signing-keys --name --resource-group [--no-wait] [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/oidc-issuer.yml
There is a command group 'az_aks_check network'. This group of commands could 'commands to troubleshoot network connectivity in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_check network_outbound'.The syntax is: az aks check-network outbound --name --resource-group [--custom-endpoints] [--node-name]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of the resource group.. The parameter '--custom-endpoints' is optional. additional endpoint(s) to perform the connectivity check, separated by comma.. The parameter '--node-name' is optional. name of the node to perform the connectivity check. if not specified, a random node will be chosen..
database/aks/check-network.yml
There is a command group 'az_aks_egress endpoints'. This group of commands could 'commands to manage egress endpoints in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_egress endpoints_list'.The syntax is: az aks egress-endpoints list --name --resource-group. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/egress-endpoints.yml
There is a command group 'az_aks_draft'. This group of commands could 'commands to build deployment files in a project directory and deploy to an aks cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_draft_create'.The syntax is: az aks draft create [--app] [--create-config] [--deployment-only] [--destination] [--dockerfile-only] [--language] [--path]. The 1th example of the child command would be to use it to 'prompt to generate a dockerfile and deployment files in the current directory', the syntax is: az aks draft create. The 2th example of the child command would be to use it to 'generate only the dockerfile in the current directory', the syntax is: az aks draft create --dockerfile-only=true. The 3th example of the child command would be to use it to 'generate only the deployment files in the current directory', the syntax is: az aks draft create --deployment-only=true. The 4th example of the child command would be to use it to 'generate a dockerfile and an deployment file in a java project with an app name at a specific project directory', the syntax is: az aks draft create --language=java --app=some_app --destination=/projects/some_project. The parameter '--app' is optional. specify the name of the helm release.. The parameter '--create-config' is optional. specify the path to the configuration file.. The parameter '--deployment-only' is optional. only generate deployment files (helm, kustomize, manifests) for the kubernetes deployment.. The parameter '--destination' is optional. specify the path to the project directory (default is .).. The parameter '--dockerfile-only' is optional. only generate dockerfile for the kubernetes deployment.. The parameter '--language' is optional. specify the language used to create the kubernetes deployment.. The parameter '--path' is optional. automatically download and use the draft binary at the specified location..
database/aks/draft.yml
There is a command group 'az_aks_draft'. This group of commands could 'commands to build deployment files in a project directory and deploy to an aks cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_draft_generate workflow'.The syntax is: az aks draft generate-workflow [--branch] [--cluster-name] [--container-name] [--destination] [--path] [--registry-name] [--resource-group]. The 1th example of the child command would be to use it to 'prompt to generate a github workflow in the current directory', the syntax is: az aks draft generate-workflow. The 2th example of the child command would be to use it to 'prompt to generate a github workflow in a specific project directory', the syntax is: az aks draft generate-workflow --destination=/projects/some_project. The 3th example of the child command would be to use it to 'generate a github workflow with a resource group an aks cluster name a container registry name in a specific project directory', the syntax is: az aks draft generate-workflow --resource-group=some_rg --cluster-name=some_cluster --registry-name=some_registry --destination=/projects/some_project. The 4th example of the child command would be to use it to 'generate a github workflow that deploys from the main branch with a resource group an aks cluster name a container registry name and a container image name in a specific project directory', the syntax is: az aks draft generate-workflow --branch=main --resource-group=some_rg --cluster-name=some_cluster --registry-name=some_registry --container-name=some_image --destination=/projects/some_project. The parameter '--branch' is optional. specify the github branch to automatically deploy from.. The parameter '--cluster-name' is optional. specify the aks cluster name.. The parameter '--container-name' is optional. specify the name of the container image.. The parameter '--destination' is optional. specify the path to the project directory (default is .).. The parameter '--path' is optional. automatically download and use the draft binary at the specified location.. The parameter '--registry-name' is optional. specify the path to the project directory.. The parameter '--resource-group' is optional. specify the name of the azure resource group..
database/aks/draft.yml
There is a command group 'az_aks_draft'. This group of commands could 'commands to build deployment files in a project directory and deploy to an aks cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_draft_setup gh'.The syntax is: az aks draft setup-gh [--app] [--gh-repo] [--path] [--provider] [--resource-group] [--subscription-id]. The 1th example of the child command would be to use it to 'prompt to setup the github oidc for a repository', the syntax is: az aks draft setup-gh. The 2th example of the child command would be to use it to 'setup the github oidc on azure for a specific repository', the syntax is: az aks draft setup-gh --provider=azure --gh-repo=some_organization/some_repo. The 3th example of the child command would be to use it to 'setup the github oidc on azure with subscription id and resource group', the syntax is: az aks draft setup-gh --provider=azure --subscription-id=some_subscription --resource-group=some_rg. The 4th example of the child command would be to use it to 'setup the github oidc with an application name on azure with subscription id and resource group for a specific repository', the syntax is: az aks draft setup-gh --app=some_app --provider=azure --subscription-id=some_subscription --resource-group=some_rg --gh-repo=some_organization/some_repo. The parameter '--app' is optional. specify the azure active directory applicaton name.. The parameter '--gh-repo' is optional. specify the the github repository (organization/repo_name).. The parameter '--path' is optional. automatically download and use the draft binary at the specified location.. The parameter '--provider' is optional. specify the cloud provider (default is azure).. The parameter '--resource-group' is optional. specify the name of the azure resource group.. The parameter '--subscription-id' is optional. specify the azure subscription id..
database/aks/draft.yml
There is a command group 'az_aks_draft'. This group of commands could 'commands to build deployment files in a project directory and deploy to an aks cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_draft_up'.The syntax is: az aks draft up [--app] [--branch] [--cluster-name] [--container-name] [--destination] [--gh-repo] [--path] [--provider] [--registry-name] [--resource-group] [--subscription-id]. The 1th example of the child command would be to use it to 'prompt to setup the github oidc then generate a github workflow in the current directory', the syntax is: az aks draft up. The 2th example of the child command would be to use it to 'prompt to setup the github oidc then generate a github workflow in a specific project directory', the syntax is: az aks draft up --destination=/projects/some_project. The 3th example of the child command would be to use it to 'prompt to setup the github oidc for a specific repository then generate a github workflow in a specific project directory', the syntax is: az aks draft up --gh-repo=some_organization/some_repo --destination=/projects/some_project. The parameter '--app' is optional. specify the name of the application.. The parameter '--branch' is optional. specify the github branch to automatically deploy from.. The parameter '--cluster-name' is optional. specify the aks cluster name.. The parameter '--container-name' is optional. specify the name of the container image.. The parameter '--destination' is optional. specify the path to the project directory (default is .).. The parameter '--gh-repo' is optional. specify the the github repository (organization/repo_name).. The parameter '--path' is optional. automatically download and use the draft binary at the specified location.. The parameter '--provider' is optional. specify the cloud provider (default is azure).. The parameter '--registry-name' is optional. specify the path to the project directory.. The parameter '--resource-group' is optional. specify the name of the azure resource group.. The parameter '--subscription-id' is optional. specify the azure subscription id..
database/aks/draft.yml
There is a command group 'az_aks_draft'. This group of commands could 'commands to build deployment files in a project directory and deploy to an aks cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_draft_update'.The syntax is: az aks draft update [--certificate] [--destination] [--host] [--path]. The 1th example of the child command would be to use it to 'prompt to update the application to be internet accessible', the syntax is: az aks draft update. The 2th example of the child command would be to use it to 'prompt to update the application to be internet accessible in a specific project directory', the syntax is: az aks draft update --destination=/projects/some_project. The 3th example of the child command would be to use it to 'update the application to be internet accessible with a host of the ingress resource and a keyvault certificate in a specific project directory', the syntax is: az aks draft update --host=some_host --certificate=some_certificate --destination=/projects/some_project. The parameter '--certificate' is optional. specify the uri of the keyvault certificate to present.. The parameter '--destination' is optional. specify the path to the project directory (default is .).. The parameter '--host' is optional. specify the host of the ingress resource.. The parameter '--path' is optional. automatically download and use the draft binary at the specified location..
database/aks/draft.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_add'.The syntax is: az aks nodepool add --cluster-name --name --resource-group [--aks-custom-headers] [--allowed-host-ports] [--asg-ids] [--crg-id] [--disable-windows-outbound-nat] [--drain-timeout] [--enable-cluster-autoscaler] [--enable-encryption-at-host] [--enable-fips-image] [--enable-node-public-ip] [--enable-ultra-ssd] [--eviction-policy {deallocate, delete}] [--gpu-instance-profile {mig1g, mig2g, mig3g, mig4g, mig7g}] [--host-group-id] [--kubelet-config] [--kubernetes-version] [--labels] [--linux-os-config] [--max-count] [--max-pods] [--max-surge] [--min-count] [--mode {system, user}] [--no-wait] [--node-count] [--node-osdisk-size] [--node-osdisk-type {ephemeral, managed}] [--node-public-ip-prefix-id] [--node-public-ip-tags] [--node-soak-duration] [--node-taints] [--node-vm-size] [--os-sku {azurelinux, cblmariner, mariner, ubuntu, windows2019, windows2022}] [--os-type] [--pod-subnet-id] [--ppg] [--priority {regular, spot}] [--scale-down-mode {deallocate, delete}] [--snapshot-id] [--spot-max-price] [--tags] [--vnet-subnet-id] [--zones]. The 1th example of the child command would be to use it to 'create a nodepool in an existing aks cluster with ephemeral os enabled', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48. The 2th example of the child command would be to use it to 'create a nodepool with encryptionathost enabled', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-encryption-at-host. The 3th example of the child command would be to use it to 'create a nodepool with ultrassd enabled', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-ultra-ssd. The 4th example of the child command would be to use it to 'create a nodepool cluster with a specific os sku', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --os-sku Ubuntu. The 5th example of the child command would be to use it to 'create a nodepool with fips enabled os', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-fips-image. The 6th example of the child command would be to use it to 'create a kubernetes cluster with a snapshot id', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --kubernetes-version 1.20.9 --snapshot-id "/subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/snapshots/mysnapshot1". The 7th example of the child command would be to use it to 'create a nodepool in an existing aks cluster with host group id', the syntax is: az aks nodepool add -g MyResourceGroup -n MyNodePool --cluster-name MyMC --host-group-id /subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/hostGroups/myHostGroup --node-vm-size VMSize. The 8th example of the child command would be to use it to 'create a nodepool with a capacity reservation group crg id', the syntax is: az aks nodepool add -g MyResourceGroup -n MyNodePool --cluster-name MyMC --node-vm-size VMSize --crg-id "/subscriptions/SubID/resourceGroups/ResourceGroupName/providers/Microsoft.ContainerService/CapacityReservationGroups/MyCRGID". The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. comma-separated key-value pairs to specify custom headers.. The parameter '--allowed-host-ports' is optional. expose host ports on the node pool. when specified, format should be a space-separated list of ranges with protocol, eg. `80/tcp 443/tcp 4000-5000/tcp`.. The parameter '--asg-ids' is optional. the ids of the application security groups to which the node pool's network interface should belong. when specified, format should be a space-separated list of ids.. The parameter '--crg-id' is optional. the crg id used to associate the new nodepool with the existed capacity reservation group resource.. The parameter '--disable-windows-outbound-nat' is optional. disable windows outboundnat on windows agent node pool.. The parameter '--drain-timeout' is optional. when nodes are drain how many minutes to wait for all pods to be evicted.. The parameter '--enable-cluster-autoscaler -e' is optional. enable cluster autoscaler.. The parameter '--enable-encryption-at-host' is optional. enable encryptionathost, default value is false.. The parameter '--enable-fips-image' is optional. use fips-enabled os on agent nodes.. The parameter '--enable-node-public-ip' is optional. enable vmss node public ip.. The parameter '--enable-ultra-ssd' is optional. enable ultrassd, default value is false.. The parameter '--eviction-policy' is optional. the eviction policy of the spot node pool. it can only be set when --priority is spot.. The parameter '--gpu-instance-profile' is optional. gpu instance profile to partition multi-gpu nvidia gpus.. The parameter '--host-group-id' is optional. the fully qualified dedicated host group id used to provision agent node pool.. The parameter '--kubelet-config' is optional. path to json file containing kubelet configurations for agent nodes. https://aka.ms/aks/custom-node-config.. The parameter '--kubernetes-version -k' is optional. version of kubernetes to use for creating the cluster, such as "1.16.9".. The parameter '--labels' is optional. the node labels for the node pool. see https://aka.ms/node-labels for syntax of labels.. The parameter '--linux-os-config' is optional. path to json file containing os configurations for linux agent nodes. https://aka.ms/aks/custom-node-config.. The parameter '--max-count' is optional. maximum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--max-pods -m' is optional. the maximum number of pods deployable to a node.. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33%.. The parameter '--min-count' is optional. minimum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--mode' is optional. the mode for a node pool which defines a node pool's primary function. if set as "system", aks prefers system pods scheduling to node pools with mode `system`. learn more at https://aka.ms/aks/nodepool/mode.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-count -c' is optional. number of nodes in the kubernetes agent pool. after creating a cluster, you can change the size of its node pool with `az aks scale`.. The parameter '--node-osdisk-size' is optional. size in gib of the os disk for each node in the agent pool. minimum 30 gib.. The parameter '--node-osdisk-type' is optional. os disk type to be used for machines in a given agent pool. defaults to 'ephemeral' when possible in conjunction with vm size and os disk size. may not be changed for this pool after creation. ('ephemeral' or 'managed').. The parameter '--node-public-ip-prefix-id' is optional. public ip prefix id used to assign public ips to vmss nodes.. The parameter '--node-public-ip-tags' is optional. the iptags of the node public ips.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--node-taints' is optional. the node taints for the node pool.. The parameter '--node-vm-size -s' is optional. size of virtual machines to create as kubernetes nodes.. The parameter '--os-sku' is optional. the os sku of the agent node pool. ubuntu or cblmariner for linux. windows2019 or windows2022 for windows.. The parameter '--os-type' is optional. the os type. linux or windows.. The parameter '--pod-subnet-id' is optional. the resource id of a subnet in an existing vnet into which to assign pods in the cluster (requires azure network-plugin).. The parameter '--ppg' is optional. the id of a ppg.. The parameter '--priority' is optional. the priority of the node pool.. The parameter '--scale-down-mode' is optional. describe how vms are added to or removed from nodepools.. The parameter '--snapshot-id' is optional. the source snapshot id used to create this nodepool.. The parameter '--spot-max-price' is optional. it can only be set when --priority is spot. specify the maximum price you are willing to pay in us dollars. possible values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. it can only include up to 5 decimal places.. The parameter '--tags' is optional. space-separated tags: key[=value] [key[=value] ...]. use "" to clear existing tags.. The parameter '--vnet-subnet-id' is optional. the resource id of a subnet in an existing vnet into which to deploy the cluster.. The parameter '--zones -z' is optional. availability zones where agent nodes will be placed. also, to install agent nodes to more than one zone you need to pass zone numbers separated by blanks. for example - to have all 3 zones, you are expected to enter `--zones 1 2 3`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_add aks preview'.The syntax is: az aks nodepool add --cluster-name --name --resource-group [--aks-custom-headers] [--allowed-host-ports] [--asg-ids] [--crg-id] [--disable-windows-outbound-nat] [--drain-timeout] [--enable-artifact-streaming] [--enable-cluster-autoscaler] [--enable-custom-ca-trust] [--enable-encryption-at-host] [--enable-fips-image] [--enable-node-public-ip] [--enable-secure-boot] [--enable-ultra-ssd] [--enable-vtpm] [--eviction-policy {deallocate, delete}] [--gpu-instance-profile {mig1g, mig2g, mig3g, mig4g, mig7g}] [--host-group-id] [--kubelet-config] [--kubernetes-version] [--labels] [--linux-os-config] [--max-count] [--max-pods] [--max-surge] [--message-of-the-day] [--min-count] [--mode {system, user}] [--no-wait] [--node-count] [--node-osdisk-size] [--node-osdisk-type {ephemeral, managed}] [--node-public-ip-prefix-id] [--node-public-ip-tags] [--node-soak-duration] [--node-taints] [--node-vm-size] [--os-sku {azurelinux, cblmariner, mariner, ubuntu, windows2019, windows2022, windowsannual}] [--os-type] [--pod-ip-allocation-mode {dynamicindividual, staticblock}] [--pod-subnet-id] [--ppg] [--priority {regular, spot}] [--scale-down-mode {deallocate, delete}] [--skip-gpu-driver-install] [--snapshot-id] [--spot-max-price] [--ssh-access {disabled, localuser}] [--tags] [--vm-set-type] [--vnet-subnet-id] [--workload-runtime {kataccisolation, katamshvvmisolation, ocicontainer, wasmwasi}] [--zones]. The 1th example of the child command would be to use it to 'create a nodepool in an existing aks cluster with ephemeral os enabled', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --node-osdisk-type Ephemeral --node-osdisk-size 48. The 2th example of the child command would be to use it to 'create a nodepool with encryptionathost enabled', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --enable-encryption-at-host. The 3th example of the child command would be to use it to 'create a nodepool with a specific os sku', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --os-sku Ubuntu. The 4th example of the child command would be to use it to 'create a nodepool which can run wasm workloads', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --workload-runtime WasmWasi. The 5th example of the child command would be to use it to 'create a kubernetes cluster with a snapshot id', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --kubernetes-version 1.20.9 --snapshot-id "/subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/snapshots/mysnapshot1". The 6th example of the child command would be to use it to 'create a nodepool with a capacity reservation group crg id', the syntax is: az aks nodepool add -g MyResourceGroup -n MyNodePool --cluster-name MyMC --node-vm-size VMSize --crg-id "/subscriptions/SubID/resourceGroups/ResourceGroupName/providers/Microsoft.ContainerService/CapacityReservationGroups/MyCRGID". The 7th example of the child command would be to use it to 'create a nodepool in an existing aks cluster with host group id', the syntax is: az aks nodepool add -g MyResourceGroup -n MyNodePool --cluster-name MyMC --host-group-id /subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/hostGroups/myHostGroup --node-vm-size VMSize. The 8th example of the child command would be to use it to 'create a nodepool with ip allocation mode set to staticblock and using a pod subnet id', the syntax is: az aks nodepool add -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster --os-sku Ubuntu --pod-subnet-id /subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.Network/virtualNetworks/MyVnet/subnets/MySubnet --pod-ip-allocation-mode StaticBlock. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--allowed-host-ports' is optional. expose host ports on the node pool. when specified, format should be a comma-separated list of ranges with protocol, eg. 80/tcp,443/tcp,4000-5000/tcp. must use vmss agent pool type.. The parameter '--asg-ids' is optional. the ids of the application security groups to which the node pool's network interface should belong. when specified, format should be a comma-separated list of ids. must use vmss agent pool type.. The parameter '--crg-id' is optional. the crg-id used to associate the new nodepool with the existed capacity reservation group resource. must use vmss agent pool type.. The parameter '--disable-windows-outbound-nat' is optional. disable windows outboundnat on windows agent node pool. must use vmss agent pool type.. The parameter '--drain-timeout' is optional. when nodes are drain how many minutes to wait for all pods to be evicted.. The parameter '--enable-artifact-streaming' is optional. enable artifact streaming for virtualmachinescalesets managed by a node pool, to speed up the cold-start of containers on a node through on-demand image loading. to use this feature, container images must also enable artifact streaming on acr. if not specified, the default is false.. The parameter '--enable-cluster-autoscaler -e' is optional. enable cluster autoscaler. must use vmss agent pool type.. The parameter '--enable-custom-ca-trust' is optional. enable custom ca trust on agent node pool.. The parameter '--enable-encryption-at-host' is optional. enable encryptionathost on agent node pool.. The parameter '--enable-fips-image' is optional. use fips-enabled os on agent nodes.. The parameter '--enable-node-public-ip' is optional. enable vmss node public ip. must use vmss agent pool type.. The parameter '--enable-secure-boot' is optional. enable secure boot on agent node pool. must use vmss agent pool type.. The parameter '--enable-ultra-ssd' is optional. enable ultrassd on agent node pool. must use vmss agent pool type.. The parameter '--enable-vtpm' is optional. enable vtpm on agent node pool. must use vmss agent pool type.. The parameter '--eviction-policy' is optional. the eviction policy of the spot node pool. it can only be set when --priority is spot.. The parameter '--gpu-instance-profile' is optional. gpu instance profile to partition multi-gpu nvidia gpus.. The parameter '--host-group-id' is optional. (preview) the fully qualified dedicated host group id used to provision agent node pool. must use vmss agent pool type.. The parameter '--kubelet-config' is optional. kubelet configurations for agent nodes.. The parameter '--kubernetes-version -k' is optional. version of kubernetes to use for creating the cluster, such as "1.7.12" or "1.8.7".. The parameter '--labels' is optional. the node labels for the node pool. see https://aka.ms/node-labels for syntax of labels.. The parameter '--linux-os-config' is optional. os configurations for linux agent nodes.. The parameter '--max-count' is optional. maximum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--max-pods -m' is optional. the maximum number of pods deployable to a node.. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33%.. The parameter '--message-of-the-day' is optional. path to a file containing the desired message of the day. only valid for linux nodes. will be written to /etc/motd.. The parameter '--min-count' is optional. minimun nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--mode' is optional. the mode for a node pool which defines a node pool's primary function. if set as "system", aks prefers system pods scheduling to node pools with mode `system`. learn more at https://aka.ms/aks/nodepool/mode.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-count -c' is optional. number of nodes in the kubernetes agent pool. after creating a cluster, you can change the size of its node pool with `az aks scale`.. The parameter '--node-osdisk-size' is optional. size in gib of the os disk for each node in the agent pool. minimum 30 gib.. The parameter '--node-osdisk-type' is optional. os disk type to be used for machines in a given agent pool. defaults to 'ephemeral' when possible in conjunction with vm size and os disk size. may not be changed for this pool after creation. ('ephemeral' or 'managed').. The parameter '--node-public-ip-prefix-id' is optional. public ip prefix id used to assign public ips to vmss nodes. must use vmss agent pool type.. The parameter '--node-public-ip-tags' is optional. the iptags of the node public ips. must use vmss agent pool type.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--node-taints' is optional. the node taints for the node pool.. The parameter '--node-vm-size -s' is optional. size of virtual machines to create as kubernetes nodes.. The parameter '--os-sku' is optional. the os-sku of the agent node pool. ubuntu or cblmariner when os-type is linux, default is ubuntu if not set; windows2019, windows2022 or windowsannual when os-type is windows, the current default is windows2022 if not set.. The parameter '--os-type' is optional. the os type. linux or windows. windows not supported yet for "virtualmachines" vm set type.. The parameter '--pod-ip-allocation-mode' is optional. set the ip allocation mode for how pod ips from the azure pod subnet are allocated to the nodes in the aks cluster. the choice is between dynamic batches of individual ips or static allocation of a set of cidr blocks. accepted values are "dynamicindividual" or "staticblock".. The parameter '--pod-subnet-id' is optional. the id of a subnet in an existing vnet into which to assign pods in the cluster (requires azure network-plugin).. The parameter '--ppg' is optional. the id of a ppg. must use vmss agent pool type.. The parameter '--priority' is optional. the priority of the node pool.. The parameter '--scale-down-mode' is optional. describes how vms are added to or removed from nodepools.. The parameter '--skip-gpu-driver-install' is optional. to skip gpu driver auto installation by aks on a nodepool using gpu vm size if customers want to manage gpu driver installation by their own. if not specified, the default is false.. The parameter '--snapshot-id' is optional. the source snapshot id used to create this nodepool. must use vmss agent pool type.. The parameter '--spot-max-price' is optional. it can only be set when --priority is spot. specify the maximum price you are willing to pay in us dollars. possible values are any decimal value greater than zero or -1 which indicates default price to be up-to on-demand. it can only include up to 5 decimal places.. The parameter '--ssh-access' is optional. configure ssh setting for the node pool. use "disabled" to disable ssh access, "localuser" to enable ssh access using private key.. The parameter '--tags' is optional. space-separated tags: key[=value] [key[=value] ...]. use "" to clear existing tags.. The parameter '--vm-set-type' is optional. agent pool vm set type. virtualmachinescalesets, availabilityset or virtualmachines(preview).. The parameter '--vnet-subnet-id' is optional. the id of a subnet in an existing vnet into which to deploy the cluster.. The parameter '--workload-runtime' is optional. determines the type of workload a node can run. defaults to ocicontainer.. The parameter '--zones -z' is optional. space-separated list of availability zones where agent nodes will be placed. must use vmss agent pool type..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_delete'.The syntax is: az aks nodepool delete --cluster-name --name --resource-group [--no-wait]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_delete aks preview'.The syntax is: az aks nodepool delete --cluster-name --name --resource-group [--ignore-pod-disruption-budget] [--no-wait]. The 1th example of the child command would be to use it to 'delete an agent pool with ignore pod disruption budget', the syntax is: az aks nodepool delete --resource-group MyResourceGroup --cluster-name MyManagedCluster --name nodepool1 --ignore-pod-disruption-budget=true. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--ignore-pod-disruption-budget -i' is optional. (preview) ignore-pod-disruption-budget deletes an existing nodepool without considering pod disruption budget.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_delete machines'.The syntax is: az aks nodepool delete-machines --cluster-name --machine-names --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'delete specific machines in an agent pool', the syntax is: az aks nodepool delete-machines -g myResourceGroup --nodepool-name nodepool1 --cluster-name myAKSCluster --machine-names machine1. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--machine-names' is required. It is used to space-separated list of machine names from the agent pool to be deleted.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_get upgrades'.The syntax is: az aks nodepool get-upgrades --cluster-name --name --resource-group. The 1th example of the child command would be to use it to 'get the available upgrade versions for an agent pool of the managed kubernetes cluster', the syntax is: az aks nodepool get-upgrades --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_get upgrades aks preview'.The syntax is: az aks nodepool get-upgrades --cluster-name --name --resource-group. The 1th example of the child command would be to use it to 'get the available upgrade versions for an agent pool of the managed kubernetes cluster', the syntax is: az aks nodepool get-upgrades --resource-group MyResourceGroup --cluster-name MyManagedCluster --nodepool-name MyNodePool. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_list'.The syntax is: az aks nodepool list --cluster-name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_list aks preview'.The syntax is: az aks nodepool list --cluster-name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_operation abort'.The syntax is: az aks nodepool operation-abort --cluster-name --name --resource-group [--no-wait]. The 1th example of the child command would be to use it to 'abort operation on agent pool', the syntax is: az aks nodepool operation-abort -g myResourceGroup --nodepool-name nodepool1 --cluster-name myAKSCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_operation abort aks preview'.The syntax is: az aks nodepool operation-abort --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait]. The 1th example of the child command would be to use it to 'abort operation on agent pool', the syntax is: az aks nodepool operation-abort -g myResourceGroup --nodepool-name nodepool1 --cluster-name myAKSCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_scale'.The syntax is: az aks nodepool scale --cluster-name --name --resource-group [--no-wait] [--node-count]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-count -c' is optional. number of nodes in the kubernetes node pool..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_scale aks preview'.The syntax is: az aks nodepool scale --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait] [--node-count]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-count -c' is optional. number of nodes in the kubernetes node pool..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_show'.The syntax is: az aks nodepool show --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_show aks preview'.The syntax is: az aks nodepool show --cluster-name --name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_start'.The syntax is: az aks nodepool start --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait]. The 1th example of the child command would be to use it to 'start agent pool in the managed cluster', the syntax is: az aks nodepool start --nodepool-name nodepool1 -g MyResourceGroup --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_start aks preview'.The syntax is: az aks nodepool start --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait]. The 1th example of the child command would be to use it to 'start agent pool in the managed cluster', the syntax is: az aks nodepool start --nodepool-name nodepool1 -g MyResourceGroup --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_stop'.The syntax is: az aks nodepool stop --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait]. The 1th example of the child command would be to use it to 'stop agent pool in the managed cluster', the syntax is: az aks nodepool stop --nodepool-name nodepool1 -g MyResourceGroup --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_stop aks preview'.The syntax is: az aks nodepool stop --cluster-name --name --resource-group [--aks-custom-headers] [--no-wait]. The 1th example of the child command would be to use it to 'stop agent pool in the managed cluster', the syntax is: az aks nodepool stop --nodepool-name nodepool1 -g MyResourceGroup --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_update'.The syntax is: az aks nodepool update --cluster-name --name --resource-group [--aks-custom-headers] [--allowed-host-ports] [--asg-ids] [--disable-cluster-autoscaler] [--drain-timeout] [--enable-cluster-autoscaler] [--labels] [--max-count] [--max-surge] [--min-count] [--mode {system, user}] [--no-wait] [--node-soak-duration] [--node-taints] [--scale-down-mode {deallocate, delete}] [--tags] [--update-cluster-autoscaler]. The 1th example of the child command would be to use it to 'reconcile the nodepool back to its current state', the syntax is: az aks nodepool update -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 2th example of the child command would be to use it to 'enable cluster autoscaler within node count range 1 5', the syntax is: az aks nodepool update --enable-cluster-autoscaler --min-count 1 --max-count 5 -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 3th example of the child command would be to use it to 'disable cluster autoscaler for an existing cluster', the syntax is: az aks nodepool update --disable-cluster-autoscaler -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 4th example of the child command would be to use it to 'update min count or max count for cluster autoscaler', the syntax is: az aks nodepool update --update-cluster-autoscaler --min-count 1 --max-count 10 -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. comma-separated key-value pairs to specify custom headers.. The parameter '--allowed-host-ports' is optional. expose host ports on the node pool. when specified, format should be a space-separated list of ranges with protocol, eg. `80/tcp 443/tcp 4000-5000/tcp`.. The parameter '--asg-ids' is optional. the ids of the application security groups to which the node pool's network interface should belong. when specified, format should be a space-separated list of ids.. The parameter '--disable-cluster-autoscaler -d' is optional. disable cluster autoscaler.. The parameter '--drain-timeout' is optional. when nodes are drain how many minutes to wait for all pods to be evicted.. The parameter '--enable-cluster-autoscaler -e' is optional. enable cluster autoscaler.. The parameter '--labels' is optional. the node labels for the node pool. see https://aka.ms/node-labels for syntax of labels.. The parameter '--max-count' is optional. maximum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33%.. The parameter '--min-count' is optional. minimum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--mode' is optional. the mode for a node pool which defines a node pool's primary function. if set as "system", aks prefers system pods scheduling to node pools with mode `system`. learn more at https://aka.ms/aks/nodepool/mode.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--node-taints' is optional. the node taints for the node pool. you can update the existing node taint of a nodepool or create a new node taint for a nodepool. pass the empty string `""` to remove all taints.. The parameter '--scale-down-mode' is optional. describe how vms are added to or removed from nodepools.. The parameter '--tags' is optional. space-separated tags: key[=value] [key[=value] ...]. use "" to clear existing tags.. The parameter '--update-cluster-autoscaler -u' is optional. update min-count or max-count for cluster autoscaler..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_update aks preview'.The syntax is: az aks nodepool update --cluster-name --name --resource-group [--aks-custom-headers] [--allowed-host-ports] [--asg-ids] [--dcat] [--disable-cluster-autoscaler] [--disable-secure-boot] [--disable-vtpm] [--drain-timeout] [--enable-artifact-streaming] [--enable-cluster-autoscaler] [--enable-custom-ca-trust] [--enable-secure-boot] [--enable-vtpm] [--labels] [--max-count] [--max-surge] [--min-count] [--mode {system, user}] [--no-wait] [--node-soak-duration] [--node-taints] [--os-sku {azurelinux, ubuntu}] [--scale-down-mode {deallocate, delete}] [--ssh-access {disabled, localuser}] [--tags] [--update-cluster-autoscaler] [--yes]. The 1th example of the child command would be to use it to 'reconcile the nodepool back to its current state', the syntax is: az aks nodepool update -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 2th example of the child command would be to use it to 'enable cluster autoscaler within node count range 1 5', the syntax is: az aks nodepool update --enable-cluster-autoscaler --min-count 1 --max-count 5 -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 3th example of the child command would be to use it to 'disable cluster autoscaler for an existing cluster', the syntax is: az aks nodepool update --disable-cluster-autoscaler -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 4th example of the child command would be to use it to 'update min count or max count for cluster autoscaler', the syntax is: az aks nodepool update --update-cluster-autoscaler --min-count 1 --max-count 10 -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The 5th example of the child command would be to use it to 'change a node pool to system mode', the syntax is: az aks nodepool update --mode System -g MyResourceGroup -n nodepool1 --cluster-name MyManagedCluster. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--allowed-host-ports' is optional. expose host ports on the node pool. when specified, format should be a comma-separated list of ranges with protocol, eg. 80/tcp,443/tcp,4000-5000/tcp. must use vmss agent pool type.. The parameter '--asg-ids' is optional. the ids of the application security groups to which the node pool's network interface should belong. when specified, format should be a comma-separated list of ids. must use vmss agent pool type.. The parameter '--dcat --disable-custom-ca-trust' is optional. disable custom ca trust on agent node pool.. The parameter '--disable-cluster-autoscaler -d' is optional. disable cluster autoscaler.. The parameter '--disable-secure-boot' is optional. disable secure boot on on an existing trusted launch enabled agent node pool.. The parameter '--disable-vtpm' is optional. disable vtpm on an existing trusted launch enabled agent node pool.. The parameter '--drain-timeout' is optional. when nodes are drain how many minutes to wait for all pods to be evicted.. The parameter '--enable-artifact-streaming' is optional. enable artifact streaming for virtualmachinescalesets managed by a node pool, to speed up the cold-start of containers on a node through on-demand image loading. to use this feature, container images must also enable artifact streaming on acr. if not specified, the default is false.. The parameter '--enable-cluster-autoscaler -e' is optional. enable cluster autoscaler. must use vmss agent pool type.. The parameter '--enable-custom-ca-trust' is optional. enable custom ca trust on agent node pool.. The parameter '--enable-secure-boot' is optional. enable secure boot on an existing trusted launch enabled agent node pool. must use vmss agent pool type.. The parameter '--enable-vtpm' is optional. enable vtpm on an existing trusted launch enabled agent node pool. must use vmss agent pool type.. The parameter '--labels' is optional. the node labels for the node pool. see https://aka.ms/node-labels for syntax of labels.. The parameter '--max-count' is optional. maximum nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33%.. The parameter '--min-count' is optional. minimun nodes count used for autoscaler, when "--enable-cluster-autoscaler" specified. please specify the value in the range of [0, 1000] for user nodepool, and [1,1000] for system nodepool.. The parameter '--mode' is optional. the mode for a node pool which defines a node pool's primary function. if set as "system", aks prefers system pods scheduling to node pools with mode `system`. learn more at https://aka.ms/aks/nodepool/mode.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--node-taints' is optional. the node taints for the node pool.. The parameter '--os-sku' is optional. the os-sku of the agent node pool.. The parameter '--scale-down-mode' is optional. describes how vms are added to or removed from nodepools.. The parameter '--ssh-access' is optional. update ssh setting for the node pool. use "disabled" to disable ssh access, "localuser" to enable ssh access using private key.. The parameter '--tags' is optional. space-separated tags: key[=value] [key[=value] ...]. use "" to clear existing tags.. The parameter '--update-cluster-autoscaler -u' is optional. update min-count or max-count for cluster autoscaler.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_upgrade'.The syntax is: az aks nodepool upgrade --cluster-name --name --resource-group [--aks-custom-headers] [--drain-timeout] [--kubernetes-version] [--max-surge] [--no-wait] [--node-image-only] [--node-soak-duration] [--snapshot-id] [--yes]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. comma-separated key-value pairs to specify custom headers.. The parameter '--drain-timeout' is optional. when nodes are drain how long to wait for all pods to be evicted.. The parameter '--kubernetes-version -k' is optional. version of kubernetes to upgrade the node pool to, such as "1.16.9".. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33% (mutually exclusive with "--node-image-only". see "az aks nodepool update --max-surge" to update max surge before upgrading with "--node-image-only").. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-image-only' is optional. only upgrade agent pool's node image.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--snapshot-id' is optional. the source snapshot id used to upgrade this nodepool.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_upgrade aks preview'.The syntax is: az aks nodepool upgrade --cluster-name --name --resource-group [--aks-custom-headers] [--drain-timeout] [--kubernetes-version] [--max-surge] [--no-wait] [--node-image-only] [--node-soak-duration] [--snapshot-id] [--yes]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--drain-timeout' is optional. when nodes are drain how many minutes to wait for all pods to be evicted.. The parameter '--kubernetes-version -k' is optional. version of kubernetes to upgrade the node pool to, such as "1.11.12".. The parameter '--max-surge' is optional. extra nodes used to speed upgrade. when specified, it represents the number or percent used, eg. 5 or 33%.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--node-image-only' is optional. only upgrade agent pool's node image.. The parameter '--node-soak-duration' is optional. the amount of time (in minutes) to wait after draining a node and before reimaging it and moving on to next node.. The parameter '--snapshot-id' is optional. the source snapshot id used to upgrade this nodepool. must use vmss agent pool type.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/nodepool.yml
There is a command group 'az_aks_nodepool'. This group of commands could 'commands to manage node pools in kubernetes kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_nodepool_wait'.The syntax is: az aks nodepool wait --cluster-name --name --resource-group [--created] [--custom] [--deleted] [--exists] [--interval] [--timeout] [--updated]. The 1th example of the child command would be to use it to 'wait for a node pool to reach a desired state polling every minute for up to thirty minutes', the syntax is: az aks nodepool wait --created --interval 60 --cluster-name MyManagedCluster --resource-group MyResourceGroup --nodepool-name MyNodePool --timeout 1800. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name --nodepool-name -n' is required. It is used to the node pool name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--created' is optional. wait until created with 'provisioningstate' at 'succeeded'.. The parameter '--custom' is optional. wait until the condition satisfies a custom jmespath query. e.g. provisioningstate!='inprogress', instanceview.statuses[?code=='powerstate/running'].. The parameter '--deleted' is optional. wait until deleted.. The parameter '--exists' is optional. wait until the resource exists.. The parameter '--interval' is optional. polling interval in seconds.. The parameter '--timeout' is optional. maximum wait in seconds.. The parameter '--updated' is optional. wait until updated with provisioningstate at 'succeeded'..
database/aks/nodepool.yml
There is a command group 'az_aks_snapshot'. This group of commands could 'commands to manage cluster snapshots'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_snapshot_create'.The syntax is: az aks snapshot create --cluster-id --name --resource-group [--aks-custom-headers] [--location] [--no-wait] [--tags]. The 1th example of the child command would be to use it to 'create a cluster snapshot', the syntax is: az aks snapshot create -g MyResourceGroup -n snapshot1 --cluster-id "/subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/managedClusters/akscluster1". The 2th example of the child command would be to use it to 'create a cluster snapshot with custom tags', the syntax is: az aks snapshot create -g MyResourceGroup -n snapshot1 --cluster-id "/subscriptions/00000/resourceGroups/AnotherResourceGroup/providers/Microsoft.ContainerService/managedClusters/akscluster1" --tags "foo=bar" "key1=val1". The parameter '--cluster-id' is required. It is used to the source cluster id from which to create this snapshot.. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--location -l' is optional. location. values from: `az account list-locations`. you can configure the default location using `az configure --defaults location=<location>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--tags' is optional. the tags of the snapshot..
database/aks/snapshot.yml
There is a command group 'az_aks_snapshot'. This group of commands could 'commands to manage cluster snapshots'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_snapshot_delete'.The syntax is: az aks snapshot delete --name --resource-group [--no-wait] [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/snapshot.yml
There is a command group 'az_aks_snapshot'. This group of commands could 'commands to manage cluster snapshots'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_snapshot_list'.The syntax is: az aks snapshot list [--resource-group]. The parameter '--resource-group -g' is optional. name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/snapshot.yml
There is a command group 'az_aks_snapshot'. This group of commands could 'commands to manage cluster snapshots'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_snapshot_show'.The syntax is: az aks snapshot show --name --resource-group. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/snapshot.yml
There is a command group 'az_aks_command'. This group of commands could 'see detail usage in az aks command invoke az aks command result'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_command_invoke'.The syntax is: az aks command invoke --name --resource-group [--command] [--file] [--no-wait]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--command -c' is optional. command or shell script you want to run.. The parameter '--file -f' is optional. files to be used by the command, use '.' to attach the current folder.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish..
database/aks/command.yml
There is a command group 'az_aks_command'. This group of commands could 'see detail usage in az aks command invoke az aks command result'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_command_result'.The syntax is: az aks command result --name --resource-group [--command-id]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--command-id -i' is optional. commandid returned from 'aks command invoke'..
database/aks/command.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_disable'.The syntax is: az aks approuting disable --name --resource-group [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/approuting.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_disable aks preview'.The syntax is: az aks approuting disable --name --resource-group [--yes]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/approuting.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_enable'.The syntax is: az aks approuting enable --name --resource-group [--attach-kv] [--enable-kv]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--attach-kv' is optional. attach a keyvault id to access secrets and certificates.. The parameter '--enable-kv' is optional. enable the keyvault secrets provider..
database/aks/approuting.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_enable aks preview'.The syntax is: az aks approuting enable --name --resource-group [--attach-kv] [--enable-kv]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--attach-kv' is optional. attach a keyvault id to access secrets and certificates.. The parameter '--enable-kv' is optional. enable the keyvault secrets provider..
database/aks/approuting.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_update'.The syntax is: az aks approuting update --name --resource-group [--attach-kv] [--enable-kv]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--attach-kv' is optional. attach a keyvault id to access secrets and certificates.. The parameter '--enable-kv' is optional. enable the keyvault secrets provider addon..
database/aks/approuting.yml
There is a command group 'az_aks_approuting'. This group of commands could 'commands to manage app routing aadon'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_approuting_update aks preview'.The syntax is: az aks approuting update --name --resource-group [--attach-kv] [--enable-kv]. The parameter '--name -n' is required. It is used to name of the managed cluster.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--attach-kv' is optional. attach a keyvault id to access secrets and certificates.. The parameter '--enable-kv' is optional. enable the keyvault secrets provider addon..
database/aks/approuting.yml
There is a command group 'az_aks_app'. This group of commands could 'commands to manage aks app'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_app_up'.The syntax is: az aks app up [--acr] [--aks-cluster] [--branch-name] [--do-not-wait] [--port] [--repository]. The parameter '--acr' is optional. name of the azure container registry to be used for pushing the image.. The parameter '--aks-cluster' is optional. name of the cluster to select for deployment.. The parameter '--branch-name' is optional. new branch name to be created to check in files and raise a pr.. The parameter '--do-not-wait' is optional. do not wait for workflow completion.. The parameter '--port' is optional. port on which your application runs. default is 8080.. The parameter '--repository -r' is optional. github repository url e.g. https://github.com/azure/azure-cli..
database/aks/app.yml
There is a command group 'az_aks_pod identity'. This group of commands could 'commands to manage pod identities in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_pod identity_add'.The syntax is: az aks pod-identity add --cluster-name --identity-resource-id --namespace --resource-group [--aks-custom-headers] [--binding-selector] [--name]. The 1th example of the child command would be to use it to 'add pod identity', the syntax is: az aks pod-identity add --cluster-name MyManagedCluster --resource-group MyResourceGroup --namespace my-namespace --name my-identity --identity-resource-id <my-identity-resource-id>. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--identity-resource-id' is required. It is used to resource id of the identity to use.. The parameter '--namespace' is required. It is used to the pod identity namespace.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2.. The parameter '--binding-selector' is optional. optional binding selector to use.. The parameter '--name -n' is optional. the pod identity name. generate if not specified..
database/aks/pod-identity.yml
There is a command group 'az_aks_pod identity'. This group of commands could 'commands to manage pod identities in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_pod identity_delete'.The syntax is: az aks pod-identity delete --cluster-name --name --namespace --resource-group [--aks-custom-headers]. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--name -n' is required. It is used to the pod identity name.. The parameter '--namespace' is required. It is used to the pod identity namespace.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`.. The parameter '--aks-custom-headers' is optional. send custom headers. when specified, format should be key1=value1,key2=value2..
database/aks/pod-identity.yml
There is a command group 'az_aks_pod identity'. This group of commands could 'commands to manage pod identities in managed kubernetes cluster'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_pod identity_list'.The syntax is: az aks pod-identity list --cluster-name --resource-group. The parameter '--cluster-name' is required. It is used to the cluster name.. The parameter '--resource-group -g' is required. It is used to name of resource group. you can configure the default group using `az configure --defaults group=<name>`..
database/aks/pod-identity.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_app insights'.The syntax is: az aks connection create app-insights [--app-insights] [--appconfig-id] [--client-type {dotnet, dotnet-internal, go, java, nodejs, none, python}] [--connection] [--customized-keys] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--resource-group] [--secret] [--source-id] [--target-id] [--target-resource-group]. The 1th example of the child command would be to use it to 'create a connection between aks and app insights interactively', the syntax is: az aks connection create app-insights. The 2th example of the child command would be to use it to 'create a connection between aks and app insights with resource name', the syntax is: az aks connection create app-insights -g ClusterRG -n MyCluster --tg AppInsightsRG --app-insights MyAppInsights --secret. The 3th example of the child command would be to use it to 'create a connection between aks and app insights with resource id', the syntax is: az aks connection create app-insights --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/microsoft.insights/components/{appinsights} --secret. The parameter '--app-insights' is optional. name of the app insights. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--app-insights'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the app insights. required if '--target-id' is not specified..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_appconfig'.The syntax is: az aks connection create appconfig [--app-config] [--appconfig-id] [--client-type {dotnet, dotnet-internal, java, nodejs, none, python}] [--connection] [--customized-keys] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and appconfig interactively', the syntax is: az aks connection create appconfig. The 2th example of the child command would be to use it to 'create a connection between aks and appconfig with resource name', the syntax is: az aks connection create appconfig -g ClusterRG -n MyCluster --tg AppconfigRG --app-config MyConfigStore --secret. The 3th example of the child command would be to use it to 'create a connection between aks and appconfig with resource id', the syntax is: az aks connection create appconfig --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.AppConfiguration/configurationStores/{config_store} --secret. The parameter '--app-config' is optional. name of the app configuration. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--app-config'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the app configuration. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_confluent cloud'.The syntax is: az aks connection create confluent-cloud --bootstrap-server --kafka-key --kafka-secret --schema-key --schema-registry --schema-secret [--appconfig-id] [--client-type {dotnet, dotnet-internal, go, java, none, python, springboot}] [--connection] [--customized-keys] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--resource-group] [--source-id]. The 1th example of the child command would be to use it to 'create a connection between aks and confluent cloud', the syntax is: az aks connection create confluent-cloud -g ClusterRG -n MyCluster --bootstrap-server xxx.eastus.azure.confluent.cloud:9092 --kafka-key Name --kafka-secret Secret --schema-registry https://xxx.eastus.azure.confluent.cloud --schema-key Name --schema-secret Secret. The parameter '--bootstrap-server' is required. It is used to kafka bootstrap server url.. The parameter '--kafka-key' is required. It is used to kafka api-key (key).. The parameter '--kafka-secret' is required. It is used to kafka api-key (secret).. The parameter '--schema-key' is required. It is used to schema registry api-key (key).. The parameter '--schema-registry' is required. It is used to schema registry url.. The parameter '--schema-secret' is required. It is used to schema registry api-key (secret).. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_cosmos cassandra'.The syntax is: az aks connection create cosmos-cassandra [--account] [--appconfig-id] [--client-type {dotnet, dotnet-internal, go, java, nodejs, none, python, springboot}] [--connection] [--customized-keys] [--key-space] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and cosmos cassandra interactively', the syntax is: az aks connection create cosmos-cassandra. The 2th example of the child command would be to use it to 'create a connection between aks and cosmos cassandra with resource name', the syntax is: az aks connection create cosmos-cassandra -g ClusterRG -n MyCluster --tg CosmosRG --account MyAccount --key-space MyKeySpace --secret. The 3th example of the child command would be to use it to 'create a connection between aks and cosmos cassandra with resource id', the syntax is: az aks connection create cosmos-cassandra --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DocumentDB/databaseAccounts/{account}/cassandraKeyspaces/{key_space} --secret. The parameter '--account' is optional. name of the cosmos database account. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--key-space' is optional. name of the keyspace. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--account', '--key-space'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the cosmos database account. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_cosmos gremlin'.The syntax is: az aks connection create cosmos-gremlin [--account] [--appconfig-id] [--client-type {dotnet, dotnet-internal, java, nodejs, none, php, python}] [--connection] [--customized-keys] [--database] [--graph] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and cosmos gremlin interactively', the syntax is: az aks connection create cosmos-gremlin. The 2th example of the child command would be to use it to 'create a connection between aks and cosmos gremlin with resource name', the syntax is: az aks connection create cosmos-gremlin -g ClusterRG -n MyCluster --tg CosmosRG --account MyAccount --database MyDB --graph MyGraph --secret. The 3th example of the child command would be to use it to 'create a connection between aks and cosmos gremlin with resource id', the syntax is: az aks connection create cosmos-gremlin --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DocumentDB/databaseAccounts/{account}/gremlinDatabases/{database}/graphs/{graph} --secret. The parameter '--account' is optional. name of the cosmos database account. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the database. required if '--target-id' is not specified.. The parameter '--graph' is optional. name of the graph. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--account', '--database', '--graph'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the cosmos database account. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_cosmos mongo'.The syntax is: az aks connection create cosmos-mongo [--account] [--appconfig-id] [--client-type {dotnet, dotnet-internal, go, java, nodejs, none, springboot}] [--connection] [--customized-keys] [--database] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and cosmos mongo interactively', the syntax is: az aks connection create cosmos-mongo. The 2th example of the child command would be to use it to 'create a connection between aks and cosmos mongo with resource name', the syntax is: az aks connection create cosmos-mongo -g ClusterRG -n MyCluster --tg CosmosRG --account MyAccount --database MyDB --secret. The 3th example of the child command would be to use it to 'create a connection between aks and cosmos mongo with resource id', the syntax is: az aks connection create cosmos-mongo --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DocumentDB/databaseAccounts/{account}/mongodbDatabases/{database} --secret. The parameter '--account' is optional. name of the cosmos database account. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the database. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--account', '--database'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the cosmos database account. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_cosmos sql'.The syntax is: az aks connection create cosmos-sql [--account] [--appconfig-id] [--client-type {dotnet, dotnet-internal, java, nodejs, none, python, springboot}] [--connection] [--customized-keys] [--database] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and cosmos sql interactively', the syntax is: az aks connection create cosmos-sql. The 2th example of the child command would be to use it to 'create a connection between aks and cosmos sql with resource name', the syntax is: az aks connection create cosmos-sql -g ClusterRG -n MyCluster --tg CosmosRG --account MyAccount --database MyDB --secret. The 3th example of the child command would be to use it to 'create a connection between aks and cosmos sql with resource id', the syntax is: az aks connection create cosmos-sql --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DocumentDB/databaseAccounts/{account}/sqlDatabases/{database} --secret. The parameter '--account' is optional. name of the cosmos database account. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the database. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--account', '--database'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the cosmos database account. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_cosmos table'.The syntax is: az aks connection create cosmos-table [--account] [--appconfig-id] [--client-type {dotnet, dotnet-internal, java, nodejs, none, python, springboot}] [--connection] [--customized-keys] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--table] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and cosmos table interactively', the syntax is: az aks connection create cosmos-table. The 2th example of the child command would be to use it to 'create a connection between aks and cosmos table with resource name', the syntax is: az aks connection create cosmos-table -g ClusterRG -n MyCluster --tg CosmosRG --account MyAccount --table MyTable --secret. The 3th example of the child command would be to use it to 'create a connection between aks and cosmos table with resource id', the syntax is: az aks connection create cosmos-table --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DocumentDB/databaseAccounts/{account}/tables/{table} --secret. The parameter '--account' is optional. name of the cosmos database account. required if '--target-id' is not specified.. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--table' is optional. name of the table. required if '--target-id' is not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--account', '--table'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the cosmos database account. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_eventhub'.The syntax is: az aks connection create eventhub [--appconfig-id] [--client-type {dotnet, dotnet-internal, go, java, kafka-springboot, nodejs, none, python, springboot}] [--connection] [--customized-keys] [--kube-namespace] [--name] [--namespace] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and eventhub interactively', the syntax is: az aks connection create eventhub. The 2th example of the child command would be to use it to 'create a connection between aks and eventhub with resource name', the syntax is: az aks connection create eventhub -g ClusterRG -n MyCluster --tg EventhubRG --namespace MyNamespace --secret. The 3th example of the child command would be to use it to 'create a connection between aks and eventhub with resource id', the syntax is: az aks connection create eventhub --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.EventHub/namespaces/{namespace} --secret. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--namespace' is optional. name of the eventhub namespace. required if '--target-id' is not specified.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--namespace'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the eventhub. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_keyvault'.The syntax is: az aks connection create keyvault [--appconfig-id] [--client-type {dotnet, dotnet-internal, java, nodejs, none, python, springboot}] [--connection] [--customized-keys] [--enable-csi {false, true}] [--kube-namespace] [--name] [--new {false, true}] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--service-endpoint {false, true}] [--service-principal] [--source-id] [--target-id] [--target-resource-group] [--vault] [--workload-identity]. The 1th example of the child command would be to use it to 'create a connection between aks and keyvault interactively', the syntax is: az aks connection create keyvault. The 2th example of the child command would be to use it to 'create a connection between aks and keyvault with resource name', the syntax is: az aks connection create keyvault -g ClusterRG -n MyCluster --tg KeyvaultRG --vault MyVault --enable-csi. The 3th example of the child command would be to use it to 'create a connection between aks and keyvault with resource id', the syntax is: az aks connection create keyvault --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.KeyVault/vaults/{vault} --enable-csi. The 4th example of the child command would be to use it to 'create a new keyvault and connect aks to it interactively', the syntax is: az aks connection create keyvault --new. The 5th example of the child command would be to use it to 'create a new keyvault and connect aks to it', the syntax is: az aks connection create keyvault --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --new. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--enable-csi' is optional. use keyvault as a secrets store via a csi volume. if specified, authtype arguments are not needed.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--new' is optional. indicates whether to create a new keyvault when creating the aks connection.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--service-principal' is optional. the service principal auth info.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--vault'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the keyvault. required if '--target-id' is not specified.. The parameter '--vault' is optional. name of the keyvault. required if '--target-id' is not specified.. The parameter '--workload-identity' is optional. the user-assigned managed identity used to create workload identity federation..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_mysql'.The syntax is: az aks connection create mysql [--appconfig-id] [--client-type {django, dotnet, dotnet-internal, go, java, nodejs, none, php, python, ruby, springboot}] [--connection] [--customized-keys] [--database] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--private-endpoint {false, true}] [--resource-group] [--secret] [--server] [--service-endpoint {false, true}] [--source-id] [--target-id] [--target-resource-group]. The 1th example of the child command would be to use it to 'create a connection between aks and mysql interactively', the syntax is: az aks connection create mysql. The 2th example of the child command would be to use it to 'create a connection between aks and mysql with resource name', the syntax is: az aks connection create mysql -g ClusterRG -n MyCluster --tg MysqlRG --server MyServer --database MyDB --secret name=XX secret=XX. The 3th example of the child command would be to use it to 'create a connection between aks and mysql with resource id', the syntax is: az aks connection create mysql --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DBForMySQL/servers/{server}/databases/{database} --secret name=XX secret=XX. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the mysql database. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--private-endpoint' is optional. connect target service by private endpoint. the private endpoint in source virtual network must be created ahead.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--server' is optional. name of the mysql server. required if '--target-id' is not specified.. The parameter '--service-endpoint' is optional. connect target service by service endpoint. source resource must be in the vnet and target sku must support service endpoint feature.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--server', '--database'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the mysql server. required if '--target-id' is not specified..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_mysql flexible'.The syntax is: az aks connection create mysql-flexible [--appconfig-id] [--client-type {django, dotnet, dotnet-internal, go, java, nodejs, none, php, python, ruby, springboot}] [--connection] [--customized-keys] [--database] [--kube-namespace] [--name] [--no-wait] [--opt-out {auth, configinfo, publicnetwork}] [--resource-group] [--secret] [--server] [--source-id] [--target-id] [--target-resource-group]. The 1th example of the child command would be to use it to 'create a connection between aks and mysql flexible interactively', the syntax is: az aks connection create mysql-flexible. The 2th example of the child command would be to use it to 'create a connection between aks and mysql flexible with resource name', the syntax is: az aks connection create mysql-flexible -g ClusterRG -n MyCluster --tg MysqlRG --server MyServer --database MyDB --secret name=XX secret=XX. The 3th example of the child command would be to use it to 'create a connection between aks and mysql flexible with resource id', the syntax is: az aks connection create mysql-flexible --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DBforMySQL/flexibleServers/{server}/databases/{database} --secret name=XX secret=XX. The parameter '--appconfig-id' is optional. the app configuration id to store configuration.. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the mysql flexible database. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--opt-out' is optional. whether to disable some configuration steps. use configinfo to disbale configuration information changes on source. use publicnetwork to disable public network access configuration.use auth to skip auth configuration such as enabling managed identity and granting rbac roles.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--server' is optional. name of the mysql flexible server. required if '--target-id' is not specified.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--server', '--database'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the mysql flexible server. required if '--target-id' is not specified..
database/aks/connection/create.yml
There is a command group 'az_aks_connection_create'. This group of commands could 'create a connection between a aks and a target resource'. The group of commands has global parameter '--debug' which means 'Increase logging verbosity to show all debug logs.'. The group of commands has global parameter '--help -h' which means 'Show this help message and exit.'. The group of commands has global parameter '--only-show-errors' which means 'Only show errors, suppressing warnings.'. The group of commands has global parameter '--output -o' which means 'Output format.'. The group of commands has global parameter '--query' which means 'JMESPath query string. See <a href="http://jmespath.org/">http://jmespath.org/</a> for more information and examples.'. The group of commands has global parameter '--subscription' which means 'Name or ID of subscription. You can configure the default subscription using `az account set -s NAME_OR_ID`.'. The group of commands has global parameter '--verbose' which means 'Increase logging verbosity. Use --debug for full debug logs.'. This group contains a child command 'az_aks_connection_create_mysql flexible serviceconnector passwordless'.The syntax is: az aks connection create mysql-flexible [--client-type {django, dotnet, dotnet-internal, go, java, nodejs, none, php, python, ruby, springboot}] [--connection] [--customized-keys] [--database] [--kube-namespace] [--name] [--no-wait] [--resource-group] [--secret] [--server] [--source-id] [--target-id] [--target-resource-group] [--vault-id] [--yes]. The 1th example of the child command would be to use it to 'create a connection between aks and mysql flexible interactively', the syntax is: az aks connection create mysql-flexible. The 2th example of the child command would be to use it to 'create a connection between aks and mysql flexible with resource name', the syntax is: az aks connection create mysql-flexible -g ClusterRG -n MyCluster --tg MysqlRG --server MyServer --database MyDB --secret name=XX secret=XX. The 3th example of the child command would be to use it to 'create a connection between aks and mysql flexible with resource id', the syntax is: az aks connection create mysql-flexible --source-id /subscriptions/{subscription}/resourceGroups/{source_resource_group}/providers/Microsoft.ContainerService/managedClusters/{cluster} --target-id /subscriptions/{subscription}/resourceGroups/{target_resource_group}/providers/Microsoft.DBforMySQL/flexibleServers/{server}/databases/{database} --secret name=XX secret=XX. The parameter '--client-type' is optional. the client type used on the aks.. The parameter '--connection' is optional. name of the aks connection.. The parameter '--customized-keys' is optional. the customized keys used to change default configuration names. key is the original name, value is the customized name.. The parameter '--database' is optional. name of the mysql flexible database. required if '--target-id' is not specified.. The parameter '--kube-namespace' is optional. the kubernetes namespace where the connection information will be saved into (as kubernetes secret).. The parameter '--name -n' is optional. name of the managed cluster. required if '--source-id' is not specified.none.. The parameter '--no-wait' is optional. do not wait for the long-running operation to finish.. The parameter '--resource-group -g' is optional. the resource group which contains the managed cluster. required if '--source-id' is not specified.none.. The parameter '--secret' is optional. the secret auth info.. The parameter '--server' is optional. name of the mysql flexible server. required if '--target-id' is not specified.. The parameter '--source-id' is optional. the resource id of a aks. required if ['--resource-group', '--name'] are not specified.. The parameter '--target-id' is optional. the resource id of target service. required if ['--target-resource-group', '--server', '--database'] are not specified.. The parameter '--target-resource-group --tg' is optional. the resource group which contains the mysql flexible server. required if '--target-id' is not specified.. The parameter '--vault-id' is optional. the id of key vault to store secret value.. The parameter '--yes -y' is optional. do not prompt for confirmation..
database/aks/connection/create.yml