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.
13 lines
271 B
13 lines
271 B
package main
|
|
|
|
// Import the fmt for formatting strings
|
|
// Import os so we can read environment variables from the system
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello, Kubernetes!I'm from Jenkins CI!")
|
|
fmt.Println("BRANCH_NAME:", os.Getenv("branch"))
|
|
}
|