bumping agnhost version to 2.10

This commit is contained in:
Krzysztof Siedlecki 2020-01-20 14:25:51 +01:00
parent dc5791b47a
commit 3593fc69ab
3 changed files with 8 additions and 8 deletions

View File

@ -40,7 +40,7 @@ For example, let's consider the following `pod.yaml` file:
containers:
- args:
- dns-suffix
image: gcr.io/kubernetes-e2e-test-images/agnhost:2.9
image: gcr.io/kubernetes-e2e-test-images/agnhost:2.10
name: agnhost
dnsConfig:
nameservers:
@ -290,14 +290,14 @@ Examples:
```console
docker run -i \
gcr.io/kubernetes-e2e-test-images/agnhost:2.9 \
gcr.io/kubernetes-e2e-test-images/agnhost:2.10 \
logs-generator --log-lines-total 10 --run-duration 1s
```
```console
kubectl run logs-generator \
--generator=run-pod/v1 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.9 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.10 \
--restart=Never \
-- logs-generator -t 10 -d 1s
```
@ -455,7 +455,7 @@ Usage:
```console
kubectl run test-agnhost \
--generator=run-pod/v1 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.9 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.10 \
--restart=Never \
--env "POD_IP=<POD_IP>" \
--env "NODE_IP=<NODE_IP>" \
@ -510,7 +510,7 @@ Usage:
```console
kubectl run test-agnhost \
--generator=run-pod/v1 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.9 \
--image=gcr.io/kubernetes-e2e-test-images/agnhost:2.10 \
--restart=Never \
--env "BIND_ADDRESS=localhost" \
--env "BIND_PORT=8080" \
@ -631,6 +631,6 @@ The image contains `iperf`, `curl`, `dns-tools` (including `dig`), CoreDNS.
## Image
The image can be found at `gcr.io/kubernetes-e2e-test-images/agnhost:2.9` for Linux
The image can be found at `gcr.io/kubernetes-e2e-test-images/agnhost:2.10` for Linux
containers, and `e2eteam/agnhost:2.8` for Windows containers. In the future, the same
repository can be used for both OSes.

View File

@ -1 +1 @@
2.9
2.10

View File

@ -48,7 +48,7 @@ import (
)
func main() {
rootCmd := &cobra.Command{Use: "app", Version: "2.9"}
rootCmd := &cobra.Command{Use: "app", Version: "2.10"}
rootCmd.AddCommand(auditproxy.CmdAuditProxy)
rootCmd.AddCommand(connect.CmdConnect)