Skip to content
This repository was archived by the owner on Jan 29, 2025. It is now read-only.

Commit b5f8a71

Browse files
killianmuldoontogashidm
authored andcommitted
Update dependencies to Kubernetes 20.2
Add context.ToDo() to API client calls. Restructure the serializer for TAS client in line with changes to the client library.
1 parent c022ad6 commit b5f8a71

File tree

6 files changed

+295
-442
lines changed

6 files changed

+295
-442
lines changed

.github/workflows/static-analysis.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@ jobs:
3535
runs-on: ${{ matrix.os }}
3636
steps:
3737
- uses: actions/checkout@v2
38+
- uses: actions/setup-go@v2
39+
with:
40+
go-version: 1.15
3841
- name: golangci-lint
3942
uses: golangci/golangci-lint-action@v2
4043
with:
4144
version: v1.29
45+
skip-go-installation: true
4246
# Additional linting tools can be added here
4347
args: --enable=golint --timeout=5m

go.mod

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/intel/telemetry-aware-scheduling
33
go 1.13
44

55
require (
6-
k8s.io/api v0.0.0-20191016110246-af539daaa43a
7-
k8s.io/apiextensions-apiserver v0.0.0-20190918201827-3de75813f604
8-
k8s.io/apimachinery v0.0.0-20191004115701-31ade1b30762
9-
k8s.io/client-go v0.0.0-20191016110837-54936ba21026
10-
k8s.io/metrics v0.0.0-20190918202012-3c1ca76f5bda
6+
k8s.io/api v0.20.2
7+
k8s.io/apimachinery v0.20.2
8+
k8s.io/client-go v0.20.2
9+
k8s.io/metrics v0.20.2
10+
1111
)

0 commit comments

Comments
 (0)