Skip to content

Commit

Permalink
fix: typo in imgpkg url
Browse files Browse the repository at this point in the history
  • Loading branch information
boulc committed May 13, 2024
1 parent f717c5e commit f72bb0f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ IMG=docker.io/thegnoucommunity/cluster-api-byoh-controller:v0.3.0 make docker-bu

```shell
docker login -u <username> -p <password>
docker push docker.io/thegnoucommunity/cluster-api-byoh-controller:v0.3.
docker push docker.io/thegnoucommunity/cluster-api-byoh-controller:v0.3
```

7. Verify and test the release artifacts.
Expand Down
4 changes: 2 additions & 2 deletions installer/bundle_builder/ubuntu/Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ RUN apt-get update \
curl

ARG ARCH=amd64
ARG IMGPKG_VERSION=0.42.1
RUN curl -LOJR https://github.com/carvel-dev/imgpkg/releases/download/v$IMGPKG_VERSION/imgpkg-linux-$ARCH \
ARG IMGPKG_VERSION=v0.42.1
RUN curl -LOJR https://github.com/carvel-dev/imgpkg/releases/download/$IMGPKG_VERSION/imgpkg-linux-$ARCH \
&& mv imgpkg-linux-$ARCH /usr/local/bin/imgpkg \
&& chmod +x /usr/local/bin/imgpkg
# If set to 1 bundle is built and available as bundle/bundle.tar
Expand Down
2 changes: 1 addition & 1 deletion installer/internal/algo/ubuntu20_04_k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ if ! command -v imgpkg >>/dev/null; then
dl_bin="curl -s -L"
fi
$dl_bin https://github.com/carvel-dev/imgpkg/releases/download/v$IMGPKG_VERSION/imgpkg-linux-$ARCH > /tmp/imgpkg
$dl_bin https://github.com/carvel-dev/imgpkg/releases/download/$IMGPKG_VERSION/imgpkg-linux-$ARCH > /tmp/imgpkg
mv /tmp/imgpkg /usr/local/bin/imgpkg
chmod +x /usr/local/bin/imgpkg
fi
Expand Down
2 changes: 1 addition & 1 deletion installer/internal/algo/ubuntu22_04_k8s.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ if ! command -v imgpkg >>/dev/null; then
dl_bin="curl -s -L"
fi
$dl_bin https://github.com/carvel-dev/imgpkg/releases/download/v$IMGPKG_VERSION/imgpkg-linux-$ARCH > /tmp/imgpkg
$dl_bin https://github.com/carvel-dev/imgpkg/releases/download/$IMGPKG_VERSION/imgpkg-linux-$ARCH > /tmp/imgpkg
mv /tmp/imgpkg /usr/local/bin/imgpkg
chmod +x /usr/local/bin/imgpkg
fi
Expand Down

0 comments on commit f72bb0f

Please sign in to comment.