github.com/kubeshop/testkube@v1.17.23/pkg/rand/names.go (about)

     1  package rand
     2  
     3  import (
     4  	petname "github.com/dustinkirkland/golang-petname"
     5  )
     6  
     7  // Name return random 3 part string similar to Docker image names, separated by `-`
     8  func Name() string {
     9  	return petname.Generate(3, "-")
    10  }