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
Copy file name to clipboardExpand all lines: docs/book/src/clusterctl/developers.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ If you want to create a local artifact, follow these instructions:
33
33
34
34
### Build artifacts locally
35
35
36
-
In order to build artifacts for the CAPI core provider, the kubeadm bootstrap provider, the kubeadm control plane provider and the docker infrastructure provider:
36
+
In order to build artifacts for the CAPI core provider, the kubeadm bootstrap provider, the kubeadm control plane provider and the Docker infrastructure provider:
37
37
38
38
```bash
39
39
make docker-build REGISTRY=gcr.io/k8s-staging-cluster-api PULL_POLICY=IfNotPresent
@@ -96,7 +96,7 @@ during your dev session.
96
96
The above config file changes the location of the [overrides layer] folder thus ensuring
97
97
you dev session isn't hijacked by other local artifacts.
98
98
99
-
With the only exception of the docker provider, the local repository folder does not contain cluster templates,
99
+
With the only exception of the Docker provider, the local repository folder does not contain cluster templates,
100
100
so the `clusterctl generate cluster` command will fail.
101
101
102
102
</aside>
@@ -126,11 +126,11 @@ please note that each `provider_repo` should have its own `clusterctl-settings.j
126
126
## Create a kind management cluster
127
127
128
128
[kind] can provide a Kubernetes cluster to be used as a management cluster.
129
-
See [Install and/or configure a kubernetes cluster] for more information.
129
+
See [Install and/or configure a Kubernetes cluster] for more information.
130
130
131
131
*Before* running clusterctl init, you must ensure all the required images are available in the kind cluster.
132
132
133
-
This is always the case for images published in some image repository like docker hub or gcr.io, but it can't be
133
+
This is always the case for images published in some image repository like Docker Hub or gcr.io, but it can't be
134
134
the case for images built locally; in this case, you can use `kind load` to move the images built locally. e.g.
135
135
136
136
```bash
@@ -148,7 +148,7 @@ script.
148
148
149
149
Optionally, you may want to check if the components are running properly. The
150
150
exact components are dependent on which providers you have initialized. Below
151
-
is an example output with the docker provider being installed.
151
+
is an example output with the Docker provider being installed.
@@ -14,7 +14,7 @@ Cluster API defines the following contracts:
14
14
## API version labels
15
15
Providers MUST set `cluster.x-k8s.io/<version>` label on all Custom Resource Definitions related to Cluster API starting with v1alpha3.
16
16
The label is a map from an API Version of Cluster API (contract) to your Custom Resource Definition versions.
17
-
The value is a underscore-delimited (_) list of versions.
17
+
The value is an underscore-delimited (_) list of versions.
18
18
Each value MUST point to an available version in your CRD Spec.
19
19
20
20
The label allows Cluster API controllers to perform automatic conversions for object references, the controllers will pick the last available version in the list if multiple versions are found.
@@ -33,4 +33,4 @@ An example of this is in the [Kubeadm Bootstrap provider](https://github.com/kub
33
33
34
34
## Improving and contributing to the contract
35
35
36
-
The definition of the contract between Cluster API and providers may be changed in future versions of Cluster API. The Cluster API maintainers welcome feedback and contributions to the contract in order to improve how it's defined, its clarity and visibility to provider implementers and its suitability across the different kinds of Cluster API providers. To provide feedback or open a discussion about the provider contract please [open an issue on the Cluster API](https://github.com/kubernetes-sigs/cluster-api/issues/new?assignees=&labels=&template=feature_request.md) repo or add an item to the agenda in the [Cluster API community meeting](http://git.k8s.io/community/sig-cluster-lifecycle/README.md#cluster-api).
36
+
The definition of the contract between Cluster API and providers may be changed in future versions of Cluster API. The Cluster API maintainers welcome feedback and contributions to the contract in order to improve how it's defined, its clarity and visibility to provider implementers and its suitability across the different kinds of Cluster API providers. To provide feedback or open a discussion about the provider contract please [open an issue on the Cluster API](https://github.com/kubernetes-sigs/cluster-api/issues/new?assignees=&labels=&template=feature_request.md) repo or add an item to the agenda in the [Cluster API community meeting](https://git.k8s.io/community/sig-cluster-lifecycle/README.md#cluster-api).
Copy file name to clipboardExpand all lines: docs/book/src/developer/providers/v0.3-to-v0.4.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@
22
22
23
23
- The `test` folder now ships with its own Go module `sigs.k8s.io/cluster-api/test`.
24
24
- The module is going to be tagged and versioned as part of the release.
25
-
- Folks importing the test e2e framework or the docker infrastructure provider need to import the new module.
25
+
- Folks importing the test e2e framework or the Docker infrastructure provider need to import the new module.
26
26
- When imported, the test module version should always match the Cluster API one.
27
27
- Add the following line in `go.mod` to replace the cluster-api dependency in the test module (change the version to your current Cluster API version):
28
28
```
@@ -199,7 +199,7 @@ should be executed before this changes.
199
199
200
200
**Changes in the `/config/default` folder:**
201
201
202
-
1. Edit the `/config/default/kustomization.yaml` file and replace all the occurencies of
202
+
1. Edit the `/config/default/kustomization.yaml` file and replace all the occurrences of
0 commit comments