Skip to content

Commit 58a624f

Browse files
committed
Updated Azure portal info to align with updated portal UI
1 parent 13787a6 commit 58a624f

File tree

1 file changed

+22
-28
lines changed

1 file changed

+22
-28
lines changed

articles/azure-arc/kubernetes/tutorial-use-gitops-flux2.md

Lines changed: 22 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -420,68 +420,62 @@ The Azure portal is useful for managing GitOps configurations and the Flux exten
420420
Follow these steps to apply a sample Flux configuration to a cluster. As part of this process, Azure installs the `microsoft.flux` extension on the cluster, if it wasn't already installed in a previous deployment.
421421

422422
1. Navigate to your cluster in the Azure portal.
423-
1. In the left pane, under **Settings**, select **GitOps**.
424-
1. Select **Create**.
425-
426-
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-gitops-start.png" alt-text="Screenshot showing the GitOps Create option for a cluster in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-gitops-start.png":::
427-
423+
1. From the service menu, under **Settings**, select **GitOps** > **Create**.
428424
1. In the **Basics** section:
429425

430426
1. Enter a name for the configuration.
431-
1. Enter the namespace within which the Flux custom resources will be installed. This can be an existing namespace or a new one that will be created when the configuration is deployed.
432-
1. Under **Scope**, select **Cluster** so that the Flux operator has access to apply the configuration to all namespaces in the cluster. To use `namespace` scope with this tutorial, [see the changes needed](conceptual-gitops-flux2.md#multi-tenancy).
433-
1. Select **Next** to continue to the **Source** section.
427+
2. Enter the namespace within which the Flux custom resources will be installed. This can be an existing namespace or a new one that will be created when the configuration is deployed.
428+
3. Under **Scope**, select **Cluster** so that the Flux operator has access to apply the configuration to all namespaces in the cluster. To use `namespace` scope with this tutorial, [see the changes needed](conceptual-gitops-flux2.md#multi-tenancy).
429+
4. Select **Next** to continue to the **Source** section.
434430

435431
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-configuration-basics.png" alt-text="Screenshot showing the Basics options for a GitOps configuration in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-configuration-basics.png":::
436432

437433
1. In the **Source** section:
438434

439435
1. In **Source type**, select **Git Repository.**
440-
1. Enter the URL for the repository where the Kubernetes manifests are located: `https://github.com/Azure/gitops-flux2-kustomize-helm-mt`.
441-
1. For reference type, select **Branch**. Leave **Branch** set to **main**.
442-
1. For **Repository type**, select **Public**.
443-
1. Leave the other options set to the default, then select **Next**.
436+
2. Enter the URL for the repository where the Kubernetes manifests are located: `https://github.com/Azure/gitops-flux2-kustomize-helm-mt`.
437+
3. For reference type, select **Branch**. Leave **Branch** set to **main**.
438+
4. For **Repository type**, select **Public**.
439+
5. Leave the other options set to the default, then select **Next**.
444440

445441
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-configuration-source.png" alt-text="Screenshow showing the Source options for a GitOps configuration in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-configuration-source.png":::
446442

447443
1. In the **Kustomizations** section, create two [kustomizations](gitops-flux2-parameters.md#kustomization): `infrastructure` and `staging`. These kustomizations are Flux resources, each associated with a path in the repository, that represent the set of manifests that Flux should reconcile to the cluster.
448444

449445
1. Select **Create**.
450-
1. In the **Create a Kustomization** screen:
446+
2. In the **Create a Kustomization** screen:
451447

452448
1. For **Instance name**, enter **infrastructure**.
453-
1. For **Path**, enter **./infrastructure**.
454-
1. Check the box for **Prune**. This setting ensures that the objects that Flux deployed to the cluster are cleaned up if they're removed from the repository, or if the Flux configuration or kustomizations are deleted.
455-
1. Leave the other options as is, then select **Save** to create the `infrastructure` kustomization.
449+
2. For **Path**, enter **./infrastructure**.
450+
3. Check the box for **Prune**. This setting ensures that the objects that Flux deployed to the cluster are cleaned up if they're removed from the repository, or if the Flux configuration or kustomizations are deleted.
451+
4. Leave the other options as is, then select **Save** to create the `infrastructure` kustomization.
456452

457453
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-kustomization-infrastructure.png" alt-text="Screenshot showing the options to create the infrastructure kustomization in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-kustomization-infrastructure.png":::
458454

459-
1. You'll see the `infrastructure` kustomization in the **Kustomizations** section. To create the next kustomization, select **Create**.
460-
1. In the **Create a Kustomization** screen:
455+
3. You'll see the `infrastructure` kustomization in the **Kustomizations** section. To create the next kustomization, select **Create**.
456+
4. In the **Create a Kustomization** screen:
461457

462458
1. For **Instance name**, enter **staging**.
463-
1. For **Path**, enter **./apps/staging**.
464-
1. Check the box for **Prune**.
465-
1. In the **Depends on** box, select **infrastructure**.
466-
1. Leave the other options as is, then select **Save** to create the `staging` kustomization.
459+
2. For **Path**, enter **./apps/staging**.
460+
3. Check the box for **Prune**.
461+
4. In the **Depends on** box, select **infrastructure**.
462+
5. Leave the other options as is, then select **Save** to create the `staging` kustomization.
467463

468464
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-kustomization-staging.png" alt-text="Screenshot showing the options to create the staging kustomization in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-kustomization-staging.png":::
469465

470-
1. You now should see both kustomizations shown in the **Kustomizations** section. Select **Next** to continue.
466+
5. You now should see both kustomizations shown in the **Kustomizations** section. Select **Next** to continue.
471467

472468
1. Review the options you selected in the previous steps. Then select **Create** to finish creating your GitOps configuration.
473469

474470
#### View configurations and objects
475471

476-
To view all of the configurations for a cluster, navigate to the cluster and select **GitOps** in the left pane.
477-
478-
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-view-configurations.png" alt-text="Screenshot showing all configurations for a cluster in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-view-configurations.png":::
472+
To view all of the configurations for a cluster, navigate to the cluster and select **GitOps** from the service menu.
479473

480474
Select the name of a configuration to view more details such as the configuration's status, properties, and source. You can then select **Configuration objects** to view all of the objects that were created to enable the GitOps configuration. This lets you quickly see the compliance state and other details about each object.
481475

482476
:::image type="content" source="media/tutorial-use-gitops-flux2/portal-configuration-objects.png" alt-text="Screenshots showing configuration objects and their state in the Azure portal." lightbox="media/tutorial-use-gitops-flux2/portal-configuration-objects.png":::
483477

484-
To see other Kubernetes resources deployed on the cluster, return to the cluster overview page and select **Kubernetes resources** in the left pane.
478+
To see other Kubernetes resources deployed on the cluster, return to the cluster overview page and select **Kubernetes resources** from the service menu.
485479

486480
To view detailed conditions for a configuration object, select its name.
487481

@@ -707,7 +701,7 @@ az k8s-extension delete -g flux-demo-rg -c flux-demo-arc -n flux -t connectedClu
707701

708702
#### Delete the Flux configuration
709703

710-
To delete a Flux configuration, navigate to the cluster where the configuration was created and select **GitOps** in the left pane. Select the configuration you want to delete. From the top of the page, select **Delete**, then select **Delete** again when prompted to confirm.
704+
To delete a Flux configuration, navigate to the cluster where the configuration was created and select **GitOps** from the service menu. Select the configuration you want to delete. From the top of the page, select **Delete**, then select **Delete** again when prompted to confirm.
711705

712706
When you delete a Flux configuration, all of the Flux configuration objects in the cluster are deleted. However, this action doesn't delete the `microsoft.flux` extension itself.
713707

0 commit comments

Comments
 (0)