Skip to content

Commit 1453b93

Browse files
authored
Update and rename install-network-function-operator.md to manage-network-function-operator.md
1 parent 8bd9e4c commit 1453b93

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

articles/operator-service-manager/install-network-function-operator.md renamed to articles/operator-service-manager/manage-network-function-operator.md

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
---
2-
title: Install network function operation extension
3-
description: Safely install the Azure Operator Service Manager network function operator extension.
2+
title: Manage the Azure Operator Service Manager cluster extension
3+
description: Command reference syntax and examples guiding management of the Azure Operator Service Manager network function operator extension.
44
author: msftadam
55
ms.author: adamdor
66
ms.date: 09/16/2024
77
ms.topic: how-to
88
ms.service: azure-operator-service-manager
99
---
1010

11-
# Install network function operator extension
11+
# Manage network function operator extension
12+
This article guides user management of the Azure Operator Service Manager (AOSM) network function operator (NFO) extension. This kubernetes cluster extension is used as part of the AOSM service offering and used to manage container based workloads, hosted by the Azure Operator Nexus platform.
1213

1314
## Overview
14-
This article guides user installation of the Azure Operator Service Manager (AOSM) network function operator (NFO) extension. This kubernetes cluster extension is used as part of the AOSM service offering to manage container based workloads hosted by the Azure Operator Nexus platform.
15+
These commands are executed after making the NAKS cluster ready for the add-on extension and presume prior installation of the Azure CLI and authentication into the target subscription.
1516

1617
## Create network function extension
18+
The Azure CLI command 'az k8s-extension create' is executed to install the NFO extension.
1719

1820
### Command
1921
```bash
@@ -151,11 +153,21 @@ The referenced matchCondition implies that the pods getting accepted in kube-sys
151153

152154
The default NFO config configures HA on NAKS but none of the disk drives on AKS support ReadWriteX access mode. Where HA needs to be disabled, use the following config options;
153155

154-
` --config global.networkfunctionextension.clusterRegistry.highAvailability.enabled=false`
155-
` --config global.networkfunctionextension.webhook.highAvailability.enabled=false` (optional)
156-
` --config global.networkfunctionextension.clusterRegistry.storageClassName=managed-csi`
156+
``` --config global.networkfunctionextension.clusterRegistry.highAvailability.enabled=false```
157157

158-
### Examples
158+
``` --config global.networkfunctionextension.webhook.highAvailability.enabled=false```
159+
160+
(optional)
161+
162+
``` --config global.networkfunctionextension.clusterRegistry.storageClassName=managed-csi```
163+
164+
## Update network function extension
165+
The Azure CLI command 'az k8s-extension update' is executed to update the NFO extension.
166+
167+
## Delete network function extension
168+
The Azure CLI command 'az k8s-extension delete' is executed to delete the NFO extension.
169+
170+
## Examples
159171
Create a network function extension with auto upgrade.
160172
```bash
161173
az k8s-extension create --resource-group myresourcegroup --cluster-name mycluster --name myextension --cluster-type connectedClusters --extension-type Microsoft.Azure.HybridNetwork --scope cluster --config Microsoft.CustomLocation.ServiceAccount=azurehybridnetwork-networkfunction-operator --release-namespace azurehybridnetwork

0 commit comments

Comments
 (0)