From 9d7329a54f9bc7f4baefc9fd44bd14756e344bfd Mon Sep 17 00:00:00 2001 From: Sunil Arora Date: Mon, 20 Aug 2018 12:31:58 -0700 Subject: [PATCH] fixed a typo in kubebuilder blogpost (#9926) --- content/en/blog/_posts/2018-08-10-introducing-kubebuilder.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/blog/_posts/2018-08-10-introducing-kubebuilder.md b/content/en/blog/_posts/2018-08-10-introducing-kubebuilder.md index d5c6a3bbab..2c7700f340 100644 --- a/content/en/blog/_posts/2018-08-10-introducing-kubebuilder.md +++ b/content/en/blog/_posts/2018-08-10-introducing-kubebuilder.md @@ -37,7 +37,7 @@ By providing an opinionated and structured solution for creating Controllers and This will scaffold the API and Controller for users to modify, as well as scaffold integration tests, RBAC rules, Dockerfiles, Makefiles, etc. After adding their implementation to the project, users create the artifacts to publish their API through: - 1. Build and push the container image from the provided Dockerfile using `make docker-build`` and `make docker-push` commands + 1. Build and push the container image from the provided Dockerfile using `make docker-build` and `make docker-push` commands 2. Deploy the API using `make deploy` command Whether you are already a Controller aficionado or just want to learn what the buzz is about, check out the [kubebuilder repo][kubebuilder-repo] or take a look at an example in the [kubebuilder book][kubebuilder-book] to learn about how simple and easy it is to build Controllers.