First Git Post


Hello World!

If you are reading this, then I was able to update my site dynamically by adding this page to my git repo. When I update this repo, deployments in two different Kubernetes clusters around the world will update dynamically. Cloudflare routes the traffic to either cluster dynamically as well.

I hope to write a more detailed post in the future explaining how this is done! :)


I can also add code samples in the “vim” style:

package main

import "fmt"

func main() {
	fmt.Println("Hello, World!")
}