You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 lines
267 B

package main
// Import the fmt for formatting strings
// Import os so we can read environment variables from the system
import (
"fmt"
)
func main() {
fmt.Println("Hello, Kubernetes!I'm from Jenkins CI!")
// fmt.Println("BRANCH_NAME:", os.Getenv("branch"))
}