Skip to content

Commit 165cf8c

Browse files
committed
Initial commit
0 parents  commit 165cf8c

File tree

5 files changed

+96
-0
lines changed

5 files changed

+96
-0
lines changed

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# If you prefer the allow list template instead of the deny list, see community template:
2+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3+
#
4+
# Binaries for programs and plugins
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Test binary, built with `go test -c`
12+
*.test
13+
14+
# Output of the go coverage tool, specifically when used with LiteIDE
15+
*.out
16+
17+
# Dependency directories (remove the comment below to include it)
18+
# vendor/
19+
20+
# Go workspace file
21+
go.work

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 Castor
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Platform Engineer Technical Test
2+
3+
Welcome to Castor Platform Engineer technical test.
4+
This test is designed to assess your technical skills and knowledge with containerization.
5+
6+
## Assignment
7+
8+
Your task is to build a container image that runs the Go web application in this repository.
9+
10+
As part of this task you will need to:
11+
12+
- Build a container image that runs the Go web application.
13+
- Allow the environment variable `PORT` to be configurable, but with a default value.
14+
- No constraints on the base image or the container runtime.
15+
- Provide instructions on how to build and run the container image in a README file.
16+
- Create a CI pipeline that builds the container image and pushes it to a registry.
17+
- The container must be able to run on Linux x86_64 and ARM processors both.
18+
- You can use any CI tool you like, but the pipeline needs to be defined in code.
19+
20+
## Submission
21+
22+
1. Fork this repository.
23+
1. Complete the task and commit it to your fork.
24+
1. Send us a link to your fork. If you would like to keep it private, please add `@MattiasAng` and `@zoni` as collaborators.

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/castoredc/platform-engineer
2+
3+
go 1.21.6

main.go

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
"log"
6+
"net/http"
7+
"os"
8+
)
9+
10+
func handler(w http.ResponseWriter, r *http.Request) {
11+
w.WriteHeader(http.StatusOK)
12+
w.Write([]byte("Hello Platform Engineer candidate!"))
13+
}
14+
15+
func main() {
16+
http.HandleFunc("/", handler)
17+
18+
port := os.Getenv("PORT")
19+
if port == "" {
20+
log.Fatal("PORT environment variable must be set")
21+
}
22+
23+
err := http.ListenAndServe(fmt.Sprintf(":%s", port), nil)
24+
if err != nil {
25+
log.Fatal(err)
26+
}
27+
}

0 commit comments

Comments
 (0)