Skip to content

Commit

Permalink
v5
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanbaraldi committed Feb 4, 2020
1 parent a0b6cdd commit d60f1db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM golang:1.11
EXPOSE 80
COPY ./bin/hello-server /usr/local/bin/
ENV GOKUBE v5
CMD ["hello-server"]
2 changes: 1 addition & 1 deletion deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ spec:
- path: /
backend:
serviceName: go-service
servicePort: 8080
servicePort: 80
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 = "gokube-go-api-v1"
const webContent = "gokube-go-api-v5"

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

0 comments on commit d60f1db

Please sign in to comment.