You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by kv...@apache.org on 2020/12/20 02:22:25 UTC

[apisix-ingress-controller] branch master updated: docs: the install.md doc lacks the creation of namespaces "ingress-apisix" (#109)

This is an automated email from the ASF dual-hosted git repository.

kvn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new 68e7692  docs: the install.md doc lacks the creation of namespaces "ingress-apisix" (#109)
68e7692 is described below

commit 68e7692f7f69f7a233d0d3404a0c0b06544aa4e3
Author: Yuelin Zheng <52...@users.noreply.github.com>
AuthorDate: Sun Dec 20 10:22:15 2020 +0800

    docs: the install.md doc lacks the creation of namespaces "ingress-apisix" (#109)
    
    * docs: the `install.md` doc lacks the creation of namespaces "ingress-apisix"
    fix #108
    
    * use plural "commands".
---
 docs/install.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/docs/install.md b/docs/install.md
index 62a7e8b..1eb6cdf 100644
--- a/docs/install.md
+++ b/docs/install.md
@@ -34,6 +34,12 @@ To install `ingress controller` in k8s, need to care about 3 parts:
 
 ## Kustomize
 
+Before executing the following commands, you need to create the namespace `ingress-apisix`:
+
+```shell
+kubectl create ns ingress-apisix
+```
+
 Install the abovementioned resources by [Kustomize](https://kustomize.io/):
 
 ```shell