github.com/GoogleContainerTools/skaffold@v1.39.18/pkg/skaffold/initializer/testdata/init/helm-deployment/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  }