diff --git a/test/images/agnhost/README.md b/test/images/agnhost/README.md index aa89ec59c30..bd2b4986d8e 100644 --- a/test/images/agnhost/README.md +++ b/test/images/agnhost/README.md @@ -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=" \ --env "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. diff --git a/test/images/agnhost/VERSION b/test/images/agnhost/VERSION index 8c2691509e7..37989bd16b4 100644 --- a/test/images/agnhost/VERSION +++ b/test/images/agnhost/VERSION @@ -1 +1 @@ -2.9 +2.10 diff --git a/test/images/agnhost/agnhost.go b/test/images/agnhost/agnhost.go index 2c862a83322..6d6510d8c71 100644 --- a/test/images/agnhost/agnhost.go +++ b/test/images/agnhost/agnhost.go @@ -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)