From 8dcf08a4d0e4f6c496107137aace89411c3b69de Mon Sep 17 00:00:00 2001 From: ldynia Date: Thu, 24 Sep 2020 13:03:53 +0200 Subject: [PATCH 1/2] image does not exist docker pull game.example/demo-game results with Error response from daemon: Get https://game.example/v2/: dial tcp: lookup game.example: no such host. Therefore is better to change image to nginx --- content/en/docs/concepts/configuration/configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/configuration/configmap.md b/content/en/docs/concepts/configuration/configmap.md index 7cefb2e6cd..0f4cebb126 100644 --- a/content/en/docs/concepts/configuration/configmap.md +++ b/content/en/docs/concepts/configuration/configmap.md @@ -102,7 +102,7 @@ metadata: spec: containers: - name: demo - image: game.example/demo-game + image: nginx env: # Define the environment variable - name: PLAYER_INITIAL_LIVES # Notice that the case is different here From 7dc69cfa0bf86569b301107df16275c52d50ad5c Mon Sep 17 00:00:00 2001 From: ldynia Date: Thu, 24 Sep 2020 15:06:15 +0200 Subject: [PATCH 2/2] Update configmap.md Changing nginx to alpine, This way it's more generic giving it generic context. --- content/en/docs/concepts/configuration/configmap.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/en/docs/concepts/configuration/configmap.md b/content/en/docs/concepts/configuration/configmap.md index 0f4cebb126..d397cf7547 100644 --- a/content/en/docs/concepts/configuration/configmap.md +++ b/content/en/docs/concepts/configuration/configmap.md @@ -102,7 +102,8 @@ metadata: spec: containers: - name: demo - image: nginx + image: alpine + command: ["sleep", "3600"] env: # Define the environment variable - name: PLAYER_INITIAL_LIVES # Notice that the case is different here