Developer Tools110k+ stars
Kubernetes
Production-Grade Container Orchestration
Commit Details
- Message
- "Initial skeleton for open source project"
- Author
- Joe Beda
- Date
- 2014-06-06
- Hash
- 2c4b3a562ce34cddc3f8218a2c4d11c7310e6d56
Fun Fact
Kubernetes is derived from Google's internal Borg system. The name is Greek for "helmsman" or "pilot".
</>First Code
Go
package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/healthz", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "ok")
})
// TODO: This is just a skeleton
// Real implementation coming soon
fmt.Println("kubernetes: starting...")
http.ListenAndServe(":8080", nil)
}← All Projects
27 of 48