Skip to content

Commit eee4abe

Browse files
committed
Fix some typos
Signed-off-by: Alex Yang <[email protected]>
1 parent b5aa69f commit eee4abe

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Kubebuilder is a framework for building Kubernetes APIs using [custom resource d
88
**Note:** kubebuilder does not exist as an example to *copy-paste*, but instead provides powerful libraries and tools
99
to simplify building and publishing Kubernetes APIs from scratch.
1010

11-
### Installalation
11+
### Installation
1212

1313
It is strongly recommended that you use a released version. Release binaries are available on the [releases](https://github.com/kubernetes-sigs/kubebuilder/releases) page.
1414
Follow the [instructions](http://book.kubebuilder.io/getting_started/installation_and_setup.html) to install Kubebuilder.

docs/migration_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Copy those dependencies into the new project's Gopkg.toml file **before** the li
139139
```
140140

141141
## Copy other user files
142-
If there are other user created files in the old project, such as any build scripts, REAMDE.md files. Copy those files into the new project.
142+
If there are other user created files in the old project, such as any build scripts, README.md files. Copy those files into the new project.
143143

144144
## Confirmation
145145
Run `make` to make sure the new project can build and pass all the tests.

docs/using_an_external_type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are several different external types that may be referenced when writing a
99
* A CRD that is created and installed in another project.
1010
* A CR defined via an API Aggregation (AA). Aggregated APIs are subordinate APIServers that sit behind the primary API server, which acts as a proxy.
1111

12-
Currrently Kubebuilder handles the first two, CRDs and Core Resources, seamlessly. External CRDs and CRs created via Aggregation must be scaffolded manually.
12+
Currently Kubebuilder handles the first two, CRDs and Core Resources, seamlessly. External CRDs and CRs created via Aggregation must be scaffolded manually.
1313

1414
In order to use a Kubernetes Custom Resource that has been defined in another project
1515
you will need to have several items of information.

pkg/scaffold/project/gopkg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type Stanza struct {
5555
// Version will appear after 'version=' and does not include quotes
5656
Version string
5757

58-
// Revision will appear after 'revsion=' and does not include quotes
58+
// Revision will appear after 'revision=' and does not include quotes
5959
Revision string
6060
}
6161

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fi
6969
TMP_DIR=$(mktemp -d)
7070
pushd $TMP_DIR
7171

72-
# Downloading Kuberbuilder compressed file using curl program
72+
# Downloading Kubebuilder compressed file using curl program
7373
URL="https://github.com/kubernetes-sigs/kubebuilder/releases/download/v${KUBEBUILDER_VERSION}/${KUBEBUILDER_VERSION_NAME}_${OSEXT}_${ARCH}.tar.gz"
7474
echo "Downloading ${KUBEBUILDER_VERSION_NAME}\nfrom $URL\n"
7575
curl -L "$URL"| tar xz -C $TMP_DIR

0 commit comments

Comments
 (0)