From 7dca537bbc7d267aa5c7fb3ace50a66d42c9fe92 Mon Sep 17 00:00:00 2001 From: Adam Veldhousen Date: Sun, 5 Jan 2020 18:54:11 -0600 Subject: [PATCH] fix some typos --- content/posts/build-time-vars-golang.md | 2 +- content/posts/k8s-loadbalancing-metallb.md | 3 ++- makefile | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/content/posts/build-time-vars-golang.md b/content/posts/build-time-vars-golang.md index 203d2d0..c51bb6c 100644 --- a/content/posts/build-time-vars-golang.md +++ b/content/posts/build-time-vars-golang.md @@ -42,7 +42,7 @@ I'm version ba83f7c418c669f705a3cce0c58a1f9129a3de14 Note that you have to specify the full path of the package in your project, for example: ```bash -# You project looks like +# Your project looks like # - main.go <- module `github.com/myrepo/test` # - version <- `github.com/myrepo/test/version` # - sha.go <- has `var Version = "dev"` diff --git a/content/posts/k8s-loadbalancing-metallb.md b/content/posts/k8s-loadbalancing-metallb.md index 1e3d974..0ad8d68 100644 --- a/content/posts/k8s-loadbalancing-metallb.md +++ b/content/posts/k8s-loadbalancing-metallb.md @@ -11,7 +11,7 @@ draft: false ## Setup Metal LB -Installation is easy but you have to make sure you're using a compatible networking add on. I would recommend [Flannel][flannel] or [Kube Router][kube-router] but there are many others supported with caveats that you can [look in their compatibility table][metallbcompattable]. +Installation is easy but you have to make sure you're using a compatible networking add on. I would recommend [Flannel][flannel] or [Kube Router][kuberouter] but there are many others supported with caveats that you can [look in their compatibility table][metallbcompattable]. Next you can install Metal LB on your cluster like so: @@ -86,6 +86,7 @@ Next I will show how to set up [Traefik][traefik], a popular and powerful loadba [metallb]: https://metallb.universe.tf/ [metallbcompattable]: https://metallb.universe.tf/installation/network-addons/ +[kuberouter]: https://www.kube-router.io/ [flannel]: https://github.com/coreos/flannel/blob/master/Documentation/kubernetes.md [cillium]: https://github.com/cilium/cilium [traefik]: https://docs.traefik.io/v2.0/ diff --git a/makefile b/makefile index ac443fa..fabb05a 100644 --- a/makefile +++ b/makefile @@ -22,7 +22,7 @@ docker-build-dev: @docker build --build-arg='VERSION=0.62.0' -t hugo -f Dockerfile.dev . deploy: - k rollout restart deployment blog + kubectl rollout restart deployment blog assets: ./assets/css/syntax.css ./layouts/partials/openring.out.html