You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
-43Lines changed: 0 additions & 43 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,49 +10,6 @@ This is the official [cluster-api](https://github.com/kubernetes-sigs/cluster-ap
10
10
11
11

12
12
13
-
## Ugrading from v0.3.X to v1.1.X
14
-
15
-
***IMPORTANT** - Before you upgrade, please note that multi-tenancy support has changed in versions after v0.3.X
16
-
* We no longer support running multiple instances of the provider in the same management cluster. Typically this was done to enable multiple credentials for managing devices in more than one project.
17
-
* If you currently have a management cluster with multiple instances of the provider, it's recommended you use clusterctl move to migrate them to another cluster before upgrading.
18
-
*[See more information about `clusterctl move` here](https://cluster-api.sigs.k8s.io/clusterctl/commands/move.html)
19
-
20
-
* Upgrade your clusterctl to version 1.1.3 or later.
21
-
* Backup your clusterapi objects from your management cluster by using the `clusterctl backup` comamnd.
You can now apply the upgrade by executing the following command:
40
-
41
-
clusterctl upgrade apply --contract v1beta1
42
-
```
43
-
44
-
* Go ahead and run `clusterctl upgrade apply --contract v1beta1`
45
-
* After this, if you'd like to co ntinue and upgrade kubernetes, it's a normal upgrade flow where you upgrade the control plane by editing the machinetemplates and kubeadmcontrolplane and the workers by editing the machinesets and machinedeployments. Full details [here](https://cluster-api.sigs.k8s.io/tasks/upgrading-clusters.html). Below is a very basic example upgrade of a small cluster:
46
-
47
-
```bash
48
-
kubectl get PacketMachineTemplate example-control-plane -o yaml > example-control-plane.yaml
49
-
# Using a text editor, edit the spec.version field to the new kubernetes version
50
-
kubectl apply -f example-control-plane.yaml
51
-
kubectl get machineDeployment example-worker-a -o yaml > example-worker-a.yaml
52
-
# Using a text editor, edit the spec.template.spec.version to the new kubernetes version
53
-
kubectl apply -f example-worker-a.yaml
54
-
```
55
-
56
13
## Using
57
14
58
15
The following section describes how to use the cluster-api provider for packet (CAPP) as a regular user.
When using the CAPI quickstart, follow the [Calico install instructions from Tigera](https://projectcalico.docs.tigera.io/getting-started/kubernetes/quickstart).
8
+
9
+
## Flannel
10
+
11
+
### Install
12
+
13
+
Follow the instructions at <https://github.com/flannel-io/flannel#deploying-flannel-manually> (ignoring the instruction to create a `flanneld` binary on each node).
14
+
15
+
When declaring your cluster, set the `POD_CIDR` to `10.244.0.0/16` which is the default `Network` (`net-conf.json`) for Flannel, or update the Flannel manifest to match the desired POD CIDR.
0 commit comments