Skip to content

Commit 33ea7a9

Browse files
committed
Fix broken links
1 parent 32165d0 commit 33ea7a9

File tree

6 files changed

+28
-9
lines changed

6 files changed

+28
-9
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ about: Tell us about a problem you are experiencing.
66

77
/kind bug
88

9-
[Before submitting an issue, have you checked the [Troubleshooting Guide](https://capz.sigs.k8s.io/topics/troubleshooting.html)?]
9+
[Before submitting an issue, have you checked the Troubleshooting Guide [self-managed](https://capz.sigs.k8s.io/self-managed/troubleshooting.html) & [managed](https://capz.sigs.k8s.io/managed/troubleshooting.html)?]
1010

1111
**What steps did you take and what happened:**
1212
[A clear and concise description of what the bug is.]

docs/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Quick start
44

5-
- [Getting started](https://capz.sigs.k8s.io/topics/getting-started.html)
5+
- [Getting started](https://capz.sigs.k8s.io/getting-started.html)
66
- [Cluster API quick start](https://cluster-api.sigs.k8s.io/user/quick-start.html)
77

88
## Features
@@ -22,7 +22,8 @@
2222

2323
## Troubleshooting
2424

25-
- [Troubleshooting guide](https://capz.sigs.k8s.io/topics/troubleshooting.html)
25+
- [Self-managed troubleshooting guide](https://capz.sigs.k8s.io/self-managed/troubleshooting.html)
26+
- [Managed troubleshooting guide](https://capz.sigs.k8s.io/managed/troubleshooting.html)
2627

2728
## Docs contributors
2829

docs/book/src/roadmap.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,24 @@ The "next" milestone is a very rough collection of issues for the milestone afte
99

1010
CAPZ is the official production-ready Cluster API implementation to administer the entire lifecycle of self-managed or managed Kubernetes clusters (AKS) on Azure. Cluster API extends the Kubernetes API to provide tooling consistent across on-premises and cloud providers to build and maintain Kubernetes clusters at scale while working with GitOps and the surrounding tooling ecosystem. [See related blog post.](https://cloudblogs.microsoft.com/opensource/2023/04/20/kubernetes-at-scale-with-gitops-and-cluster-api/)
1111

12-
## Epics
12+
## Long-Term Priorities
1313

14-
There are a number of large priority "Epics" which may span across milestones which we believe are important to providing CAPZ users an even better experience and improving the vision. The [CAPZ project board roadmap view](https://github.com/orgs/kubernetes-sigs/projects/26/views/11) tracks the larger "epic issues" and their progress.
14+
CAPZ can provision three major types of clusters, each of which have a different investment priority.
15+
16+
1. Self-Managed clusters - maintain the current functionality via bug fixes and security patches. New features will be accepted via contributor pull requests.
17+
2. Managed clusters (AzureManaged* current API) - maintain the current functionality via bug fixes and security patches. New features will be accepted via contributor pull requests. It is recommended that the existing [asoManaged*Patches functionality](./managed/managedcluster.md#warning-warning-this-is-meant-to-be-used-sparingly-to-enable-features-for-development-and-testing-that-are-not-otherwise-represented-in-the-capz-api-misconfiguration-that-conflicts-with-capzs-normal-mode-of-operation-is-possible) be considered as a stop-gap to missing features in the CAPZ definitions for AKS.
18+
See deprecation timeline below.
19+
3. Managed clusters (AzureASOManaged* new API) - was moved out of experimentation in July for the 1.16 release and is where the investment lies moving forward for provisioning AKS clusters.
20+
21+
See the [managed clusters](./managed/managed.md) for further background and comparison of the two managed cluster APIs.
22+
23+
Approximate timeline for deprecation of AzureManaged API:
24+
- Sept 2024 - 1.17 - Announcement of deprecation of AzureManaged API.
25+
- Nov 2024 - 1.18
26+
- Jan 2025 - 1.19 - move AzureASOManaged API to beta
27+
- Mar 2025 - 1.20 - no new features accepted for AzureManaged API. Warning message in code for deprecation.
28+
- May 2025 - 1.21 - GA AzureASOManaged API
29+
- July 2025 - 1.22
30+
- Sept 2025 - 1.23 - AzureManaged API is removed from code base, AzureASOManaged API is default.
31+
32+
There may be investment creating a new API definition for AKS from the [Managed Kubernetes CAPI proposal](https://github.com/kubernetes-sigs/cluster-api/blob/main/docs/proposals/20220725-managed-kubernetes.md) at some point in the future. If interested in this functionality, please file an issue on the CAPZ repository and come to the community group meeting to discuss.

docs/book/src/self-managed/addons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Overview
22

3-
This section provides examples for addons for self-managed clusters. For managed cluster addons, please go to the [managed cluster specifications](https://capz.sigs.k8s.io/topics/managedcluster.html#specification).
3+
This section provides examples for addons for self-managed clusters. For managed cluster addons, please go to the [managed cluster specifications](../managed/managedcluster.md#specification).
44

55
Self managed cluster addon options covered here:
66

docs/book/src/self-managed/custom-vnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spec:
7070
resourceGroup: cluster-vnet-peering
7171
```
7272

73-
Currently, only virtual networks on the same subscription can be peered. Also, note that when creating workload clusters with internal load balancers, the management cluster must be in the same VNet or a peered VNet. See [here](https://capz.sigs.k8s.io/topics/api-server-endpoint.html#warning) for more details.
73+
Currently, only virtual networks on the same subscription can be peered. Also, note that when creating workload clusters with internal load balancers, the management cluster must be in the same VNet or a peered VNet. See [here](./api-server-endpoint.md#warning) for more details.
7474

7575
## Custom Network Spec
7676

docs/book/src/self-managed/publicmec-clusters.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ Execute clusterctl to template the resources:
6868
clusterctl init --infrastructure azure
6969
clusterctl generate cluster ${CLUSTER_NAME} --kubernetes-version ${KUBERNETES_VERSION} --flavor edgezone > edgezone-cluster.yaml
7070
```
71-
Public MEC doesn't have access to CAPI images in Azure Marketplace, therefore, users need to prepare CAPI image by themselves. You can follow doc [Custom Images](https://capz.sigs.k8s.io/topics/custom-images.html) to setup custom image.
71+
Public MEC doesn't have access to CAPI images in Azure Marketplace, therefore, users need to prepare CAPI image by themselves. You can follow doc [Custom Images](./custom-images.md) to setup custom image.
7272

7373
Apply the modified template to your kind management cluster:
7474
```bash
7575
kubectl apply -f edgezone-cluster.yaml
7676
```
7777

78-
Once target cluster's control plane is up, install [Azure cloud provider components](https://github.com/kubernetes-sigs/cloud-provider-azure/tree/master/helm/cloud-provider-azure) by helm. The minimum version for "out-of-tree" Azure cloud provider is v1.0.3, "in-tree" Azure cloud provider is not supported. (Reference: https://capz.sigs.k8s.io/topics/addons.html#external-cloud-provider)
78+
Once target cluster's control plane is up, install [Azure cloud provider components](https://github.com/kubernetes-sigs/cloud-provider-azure/tree/master/helm/cloud-provider-azure) by helm. The minimum version for "out-of-tree" Azure cloud provider is v1.0.3, "in-tree" Azure cloud provider is not supported. (Reference: ./addons.md#external-cloud-provider)
7979

8080
```bash
8181
# get the kubeconfig of the cluster

0 commit comments

Comments
 (0)