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

View File

@ -1 +1 @@
2.9 2.10

View File

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