66 to you under the Apache License, Version 2.0 (the
77 "License"); you may not use this file except in compliance
88 with the License. You may obtain a copy of the License at
9-
9+
1010 http://www.apache.org/licenses/LICENSE-2.0
11-
11+
1212 Unless required by applicable law or agreed to in writing, software
1313 distributed under the License is distributed on an "AS IS" BASIS,
1414 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -31,7 +31,7 @@ Start by creating a buildx context that supports (optionally) multi-platform ima
3131created this context previously, it's enough to ensure that it's active via ` docker buildx ls ` .
3232
3333``` shell
34- $ docker buildx create \
34+ docker buildx create \
3535 --driver docker-container \
3636 --platform linux/amd64,linux/arm64 \
3737 --use \
@@ -41,7 +41,7 @@ $ docker buildx create \
4141Finally, build the image using:
4242
4343``` shell
44- $ docker buildx bake \
44+ docker buildx bake \
4545 --file src/main/docker/docker-bake.hcl \
4646 --file src/main/docker/docker-bake.override.hcl \
4747 --pull \
@@ -56,14 +56,14 @@ This exports an image to your local repository that is tagged as `${USER}/hbase/
5656The image is configured with ` kuttl ` as the entrypoint.
5757
5858``` shell
59- $ docker container run --rm -it ${USER} /hbase/kustomize/kuttl:latest --help
59+ docker container run --rm -it ${USER} /hbase/kustomize/kuttl:latest --help
6060```
6161
6262Running tests in the image requires mounting the workspace into the container image and passing
6363appropriate parameters to ` kuttl ` . For example, run the "small" tests like this:
6464
6565``` shell
66- $ docker container run \
66+ docker container run \
6767 --mount type=bind,source=$( pwd) ,target=/workspace \
6868 --workdir /workspace \
6969 ${USER} /hbase/kustomize/kuttl:latest \
0 commit comments