Skip to content

Commit 815fc54

Browse files
authored
Update for v0.2.3 (#24)
* Update for v0.2.3 * Update repo location
1 parent 42ec23e commit 815fc54

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
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.2"
3+
version = "0.2.3"
44
authors = ["Linkerd Developers <[email protected]>"]
55
edition = "2018"
66
publish = false

README.md

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

77
```
8-
linkerd-await 0.2.2
8+
linkerd-await 0.2.3
99
Wait for linkerd to become ready before running a program
1010
1111
USAGE:
12-
linkerd-await [OPTIONS] [CMD]...
12+
linkerd-await [FLAGS] [OPTIONS] [ARGS]
1313
1414
FLAGS:
1515
-h, --help Prints help information
@@ -21,7 +21,8 @@ OPTIONS:
2121
-p, --port <port> The port of the local Linkerd proxy admin server [default: 4191]
2222
2323
ARGS:
24-
<CMD>...
24+
<CMD> The command to run after linkerd is ready
25+
<ARGS>... Arguments to pass to CMD if specified
2526
```
2627

2728
## Examples
@@ -31,8 +32,8 @@ ARGS:
3132
```dockerfile
3233
# Create a base layer with linkerd-await from a recent release.
3334
FROM docker.io/curlimages/curl:latest as linkerd
34-
ARG LINKERD_AWAIT_VERSION=v0.2.2
35-
RUN curl -sSLo /tmp/linkerd-await https://github.com/olix0r/linkerd-await/releases/download/release%2F${LINKERD_AWAIT_VERSION}/linkerd-await-${LINKERD_AWAIT_VERSION}-amd64 && \
35+
ARG LINKERD_AWAIT_VERSION=v0.2.3
36+
RUN curl -sSLo /tmp/linkerd-await https://github.com/linekrd/linkerd-await/releases/download/release%2F${LINKERD_AWAIT_VERSION}/linkerd-await-${LINKERD_AWAIT_VERSION}-amd64 && \
3637
chmod 755 /tmp/linkerd-await
3738

3839
# Build your application with whatever environment makes sense.

0 commit comments

Comments
 (0)