github.com/GoogleContainerTools/skaffold/v2@v2.13.2/integration/testdata/helm-statefulset-v1-schema/main.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func main() { 9 for counter := 0; ; counter++ { 10 fmt.Println("Hello world!", counter) 11 12 time.Sleep(time.Second * 1) 13 } 14 }