Skip to content

Commit e462d44

Browse files
authored
Prepare for v0.2.4 (#48)
1 parent f9dd94a commit e462d44

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linkerd-await"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
authors = ["Linkerd Developers <[email protected]>"]
55
edition = "2018"
66
publish = false

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A command-wrapper that polls Linkerd for readiness until it becomes ready and on
55
## Usage
66

77
```
8-
linkerd-await 0.2.3
8+
linkerd-await 0.2.4
99
Wait for linkerd to become ready before running a program
1010
1111
USAGE:
@@ -19,6 +19,8 @@ FLAGS:
1919
OPTIONS:
2020
-b, --backoff <backoff> Time to wait after a failed readiness check [default: 1s]
2121
-p, --port <port> The port of the local Linkerd proxy admin server [default: 4191]
22+
-v, --verbose <verbose> Causes linkerd-await to print an error message when disabled [env:
23+
LINKERD_AWAIT_VERBOSE=]
2224
2325
ARGS:
2426
<CMD> The command to run after linkerd is ready
@@ -32,7 +34,7 @@ ARGS:
3234
```dockerfile
3335
# Create a base layer with linkerd-await from a recent release.
3436
FROM docker.io/curlimages/curl:latest as linkerd
35-
ARG LINKERD_AWAIT_VERSION=v0.2.3
37+
ARG LINKERD_AWAIT_VERSION=v0.2.4
3638
RUN curl -sSLo /tmp/linkerd-await https://github.com/linkerd/linkerd-await/releases/download/release%2F${LINKERD_AWAIT_VERSION}/linkerd-await-${LINKERD_AWAIT_VERSION}-amd64 && \
3739
chmod 755 /tmp/linkerd-await
3840

0 commit comments

Comments
 (0)