From 2c37c8fc35355102274c3f79ad88cb62f88c36ec Mon Sep 17 00:00:00 2001 From: Benjamin Danon Date: Sun, 29 Mar 2020 00:15:47 +0100 Subject: [PATCH] Fix the newName field name in the example Kubernetes-commit: 77ca434ec378d607fee83dc790eb8981d5beb4e7 --- docs/book/pages/app_management/container_images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/pages/app_management/container_images.md b/docs/book/pages/app_management/container_images.md index 8c5c63e66..aa17f9c53 100644 --- a/docs/book/pages/app_management/container_images.md +++ b/docs/book/pages/app_management/container_images.md @@ -40,7 +40,7 @@ tag. |-----------|--------------------------------------------------------------------------|----------| --- | | `name` | Match images with this image name| `name: nginx`| | | `newTag` | Override the image **tag** or **digest** for images whose image name matches `name` | `newTag: new` | `nginx:old` -> `nginx:new` | -| `newName` | Override the image **name** for images whose image name matches `name` | `newImage: nginx-special` | `nginx:old` -> `nginx-special:old` | +| `newName` | Override the image **name** for images whose image name matches `name` | `newName: nginx-special` | `nginx:old` -> `nginx-special:old` | {% method %}