Skip to content

Commit 00c54f2

Browse files
committed
Fix the commands for image build in the docs and script.
Signed-off-by: aztecher <[email protected]>
1 parent ff971e2 commit 00c54f2

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

dist/READMEcontainer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ kubelet.
8484

8585
$ cd images && make
8686
builds the default centos based image from Dockerfile
87-
$ make fedora
87+
$ make fedora-image
8888
builds the image with the fedora
8989

9090
Once the image is built it must be tagged and pushed to a docker image repo

docs/developer-guide/image-build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ To build images locally, use the following [Makefile](https://github.com/ovn-kub
2121

2222
```bash
2323
$ cd dist/images
24-
$ make fedora
25-
$ make ubuntu
24+
$ make fedora-image
25+
$ make ubuntu-image
2626
```
2727

2828
The build will create an image called ovn-kube-fedora:latest or ovn-kube-ubuntu:latest, which can be re-tagged.

docs/installation/launching-ovn-kubernetes-on-kind.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Build the image for fedora and launch the KIND Deployment
4444
4545
```
4646
$ pushd dist/images
47-
$ make fedora
47+
$ make fedora-image
4848
$ popd
4949

5050
$ pushd contrib
@@ -70,7 +70,7 @@ $ OCI_BIN=podman
7070
Then build,
7171
7272
```
73-
$ make fedora
73+
$ make fedora-image
7474
$ popd
7575
```
7676
@@ -319,7 +319,7 @@ $ cd go-controller/
319319
$ make
320320
321321
$ cd ../dist/images/
322-
$ make fedora
322+
$ make fedora-image
323323
324324
$ cd ../../contrib/
325325
$ KIND_IPV4_SUPPORT=false KIND_IPV6_SUPPORT=true ./kind.sh
@@ -423,7 +423,7 @@ $ cd go-controller/
423423
$ make
424424
425425
$ cd ../dist/images/
426-
$ make fedora
426+
$ make fedora-image
427427
428428
$ cd ../../contrib/
429429
$ KIND_IPV4_SUPPORT=true KIND_IPV6_SUPPORT=true K8S_VERSION=v1.31.0 ./kind.sh

docs/installation/launching-ovn-kubernetes-with-helm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ networking:
6464
- Optional: build local image and load it into Kind nodes
6565
```
6666
# cd dist/images
67-
# make ubuntu
67+
# make ubuntu-image
6868
# docker tag ovn-kube-ubuntu:latest ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
6969
# kind load docker-image ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
7070
```

helm/basic-deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [[ "$BUILD_IMAGE" == "true" ]]; then
5050
# Build image
5151
echo "Building Docker image..."
5252
pushd ../dist/images
53-
make ubuntu
53+
make ubuntu-image
5454
popd
5555
docker tag ovn-kube-ubuntu:latest $IMG
5656
else

helm/ovn-kubernetes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ networking:
8484
- Optional: build local image and load it into Kind nodes
8585
```
8686
# cd dist/images
87-
# make ubuntu
87+
# make ubuntu-image
8888
# docker tag ovn-kube-ubuntu:latest ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
8989
# kind load docker-image ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
9090
```

helm/ovn-kubernetes/README.md.gotmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ networking:
8787
- Optional: build local image and load it into Kind nodes
8888
```
8989
# cd dist/images
90-
# make ubuntu
90+
# make ubuntu-image
9191
# docker tag ovn-kube-ubuntu:latest ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
9292
# kind load docker-image ghcr.io/ovn-kubernetes/ovn-kubernetes/ovn-kube-ubuntu:master
9393
```

0 commit comments

Comments
 (0)