Skip to content

Commit f101366

Browse files
committed
headings and acrolinx
1 parent 9cc73a2 commit f101366

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

articles/azure-arc/kubernetes/extensions.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@ description: "Deploy and manage lifecycle of extensions on Azure Arc-enabled Kub
88

99
# Deploy and manage Azure Arc-enabled Kubernetes cluster extensions
1010

11-
The Kubernetes extensions feature enables the following on Azure Arc-enabled Kubernetes clusters:
12-
13-
* Azure Resource Manager-based deployment of cluster extension.
14-
* Lifecycle management of extension Helm charts.
15-
16-
This article describes how to how to create extension instances in a cluster, including required and optional parameters. It also describes how to view, list, update, and delete extension instances.
11+
You can create extension instances in an Arc-enabled Kubernetes cluster, setting required and optional parameters including options related to updates and configurations. You can also view, list, update, and delete extension instances.
1712

1813
Before you begin, read the [conceptual overview of Arc-enabled Kubernetes cluster extensions](conceptual-extensions.md) and review the [list of currently available extensions](extensions-release.md).
1914

@@ -114,17 +109,17 @@ Use one or more of these optional parameters as needed for your scenarios, along
114109

115110
| Parameter name | Description |
116111
|--------------|------------|
117-
| `--auto-upgrade-minor-version` | Boolean property that determines whether the extension minor version will be upgraded automatically or not. The default setting is `true`. If this parameter is set to `true`, you can't set the `version` parameter, as the version will be dynamically updated. If set to `false`, the extension will not be auto-upgraded, even for patch versions. |
112+
| `--auto-upgrade-minor-version` | Boolean property that determines whether the extension minor version is automatically upgraded. The default setting is `true`. If this parameter is set to `true`, you can't set the `version` parameter, as the version will be dynamically updated. If set to `false`, the extension won't be automatically upgraded, even for patch versions. |
118113
| `--version` | Version of the extension to be installed (specific version to pin the extension instance to). Must not be supplied if `auto-upgrade-minor-version` is set to `true`. |
119114
| `--configuration-settings` | Settings that can be passed into the extension to control its functionality. These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-settings-file` can't be used in the same command. |
120115
| `--configuration-settings-file` | Path to a JSON file with `key=value` pairs to be used for passing configuration settings into the extension. If this parameter is used in the command, then `--configuration-settings` can't be used in the same command. |
121-
| `--configuration-protected-settings` | Settings that are not retrievable using `GET` API calls or `az k8s-extension show` commands. Typically used to pass in sensitive settings. These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-protected-settings-file` can't be used in the same command. |
116+
| `--configuration-protected-settings` | Settings that aren't retrievable using `GET` API calls or `az k8s-extension show` commands. Typically used to pass in sensitive settings. These are passed in as space-separated `key=value` pairs after the parameter name. If this parameter is used in the command, then `--configuration-protected-settings-file` can't be used in the same command. |
122117
| `--configuration-protected-settings-file` | Path to a JSON file with `key=value` pairs to be used for passing sensitive settings into the extension. If this parameter is used in the command, then `--configuration-protected-settings` can't be used in the same command. |
123-
| `--release-namespace` | This parameter indicates the namespace within which the release is to be created. Only relevant if `scope` is set to `cluster`. |
124-
| `--release-train` | Extension authors can publish versions in different release trains such as `Stable`, `Preview`, etc. If this parameter is not set explicitly, `Stable` is used as default. This parameter can't be used when `--auto-upgrade-minor-version` is set to `false`. |
118+
| `--release-namespace` | This parameter indicates the namespace within which the release will be created. Only relevant if `scope` is set to `cluster`. |
119+
| `--release-train` | Extension authors can publish versions in different release trains such as `Stable`, `Preview`, etc. If this parameter isn't set explicitly, `Stable` is used as default. This parameter can't be used when `--auto-upgrade-minor-version` is set to `false`. |
125120
| `--target-namespace` | Indicates the namespace within which the release will be created. Permission of the system account created for this extension instance will be restricted to this namespace. Only relevant if `scope` is set to `namespace`. |
126121

127-
### Show details of an extension instance
122+
## Show extension details
128123

129124
To view details of a currently installed extension instance, use `k8s-extension show`, passing in values for the mandatory parameters.
130125

@@ -168,9 +163,9 @@ az k8s-extension show --name azuremonitor-containers --cluster-name <clusterName
168163
}
169164
```
170165

171-
### List all extensions installed on the cluster
166+
## List all extensions installed on the cluster
172167

173-
To list all extensions installed on a cluster, use `k8s-extension list`, passing in values for the mandatory parameters.
168+
To view a list of all extensions installed on a cluster, use `k8s-extension list`, passing in values for the mandatory parameters.
174169

175170
```azurecli
176171
az k8s-extension list --cluster-name <clusterName> --resource-group <resourceGroupName> --cluster-type connectedClusters
@@ -232,7 +227,7 @@ az k8s-extension list --cluster-name <clusterName> --resource-group <resourceGro
232227
]
233228
```
234229

235-
### Delete extension instance
230+
## Delete extension instance
236231

237232
To delete an extension instance on a cluster, use `k8s-extension delete`, passing in values for the mandatory parameters.
238233

0 commit comments

Comments
 (0)