Skip to content

teste33 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
1063264
teste pipeline
edsonmottac Dec 22, 2022
b067962
teste
edsonmottac Dec 22, 2022
6f27a52
teste2
edsonmottac Dec 22, 2022
a854f82
teste5
edsonmottac Dec 22, 2022
a9b41a1
mudança ingress
edsonmottac Dec 22, 2022
a9094fb
teste6
edsonmottac Dec 22, 2022
6a50973
teste8
edsonmottac Dec 22, 2022
6213617
teste9
edsonmottac Dec 22, 2022
b767695
teste10
edsonmottac Dec 22, 2022
c9f4802
teste11
edsonmottac Dec 22, 2022
bced0f0
teste12
edsonmottac Dec 22, 2022
ba8d4c6
teste12
edsonmottac Dec 22, 2022
519740a
teste15
edsonmottac Dec 22, 2022
deb44a0
teste16
edsonmottac Dec 22, 2022
c388777
teste17
edsonmottac Dec 22, 2022
d87f9d2
teste18
edsonmottac Dec 22, 2022
0e49457
teste19
edsonmottac Dec 22, 2022
f5c426d
test20
edsonmottac Dec 22, 2022
f817c42
teste21
edsonmottac Dec 22, 2022
1a41d83
teste22
edsonmottac Dec 22, 2022
4eee8eb
teste23
edsonmottac Dec 22, 2022
84ebd9e
teste24
edsonmottac Dec 22, 2022
08f0e0b
teste25
edsonmottac Dec 22, 2022
78ac7ee
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
7fb4ef7
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
c5eb93d
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
90d392c
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
605df06
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
8bdca78
teste26
edsonmottac Dec 22, 2022
6f78941
teste27
edsonmottac Dec 22, 2022
526b3c2
teste28
edsonmottac Dec 22, 2022
3c06b6e
Update .rancher-pipeline.yml file
edsonmottac Dec 22, 2022
6476ee3
teste29
edsonmottac Dec 23, 2022
c798c0d
test30
edsonmottac Dec 23, 2022
c0da833
teste31
edsonmottac Dec 23, 2022
23d3459
teste32
edsonmottac Dec 23, 2022
bf0362f
teste33
edsonmottac Dec 23, 2022
627a6f6
teste34
edsonmottac Dec 23, 2022
b876ee1
teste35
edsonmottac Dec 23, 2022
8195f2d
teste36
edsonmottac Dec 23, 2022
b9a1994
teste37
edsonmottac Dec 23, 2022
55541cb
teste38
edsonmottac Dec 23, 2022
fcd0d16
teste39
edsonmottac Dec 23, 2022
4a3ec95
teste40
edsonmottac Jan 1, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .rancher-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ stages:
steps:
- runScriptConfig:
image: golang:1.11
shellScript: |-
mkdir -p /go/src/github.com/rancher
ln -s `pwd` /go/src/github.com/rancher/pipeline-example-go
cd /go/src/github.com/rancher/pipeline-example-go
go build -o bin/hello-server
go test -cover
shellScript: "mkdir -p /go/src/github.com/rancher\nln -s `pwd` /go/src/github.com/rancher/pipeline-example-go\ncd
/go/src/github.com/rancher/pipeline-example-go\ngo build -o bin/hello-server
\ngo test -cover"
- name: Publish
steps:
- publishImageConfig:
Expand All @@ -18,4 +15,6 @@ stages:
- name: Deploy
steps:
- applyYamlConfig:
path: ./deployment.yaml
path: ./deployment.yaml
timeout: 20
notification: {}
2 changes: 1 addition & 1 deletion deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ metadata:
allow.http: "false"
spec:
rules:
- host: go.rancher.dev-ops-ninja.com
- host: go.rancher.com
http:
paths:
- path: /
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
)

const webContent = "dev-ops-ninja:v99"
const webContent = "dev-ops-ninja:vXPT40"

func main() {
http.HandleFunc("/", helloHandler)
Expand Down