├── .rancher-pipeline.yml ├── Dockerfile ├── README.md ├── deployment.yaml ├── main.go └── main_test.go /.rancher-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/.rancher-pipeline.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/README.md -------------------------------------------------------------------------------- /deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/deployment.yaml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rancher/pipeline-example-go/HEAD/main_test.go --------------------------------------------------------------------------------