Skip to content

Commit

Permalink
Update Go version to 1.23.4 and add k8s.io/client-go dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasDeHondt committed Jan 8, 2025
1 parent 6a51097 commit 0051b0b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion App/Backend/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ package main

import (
"fmt"

_ "k8s.io/client-go" // Import all k8s.io/client-go packages
)

func main() {
fmt.Println("K10s")
}
}
4 changes: 2 additions & 2 deletions App/Backend/go.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module github.com/eliasdehondt/K10s/App/Backend

go 1.20
go 1.23.4

require (

k8s.io/client-go v0.32.0
)
2 changes: 2 additions & 0 deletions App/Backend/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
k8s.io/client-go v0.32.0 h1:DimtMcnN/JIKZcrSrstiwvvZvLjG0aSxy8PxN8IChp8=
k8s.io/client-go v0.32.0/go.mod h1:boDWvdM1Drk4NJj/VddSLnx59X3OPgwrOo0vGbtq9+8=

0 comments on commit 0051b0b

Please sign in to comment.