File tree Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Expand file tree Collapse file tree 7 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ codegen: dependency
14
14
bash hack/update-codegen.sh
15
15
16
16
test : codegen
17
- GOOS=linux GOARCH=amd64 go test ./internal/services ./internal /types ./internal/utils
17
+ GOARCH=amd64 go test ./internal/services ./pkg /types ./internal/utils
18
18
19
19
test-only :
20
20
@echo " -> Test only kubi operator binary"
21
- GOOS=linux GOARCH=amd64 go test ./internal/services ./internal /types ./internal/utils
21
+ GOARCH=amd64 go test ./internal/services ./pkg /types ./internal/utils
22
22
23
23
build : test
24
24
@echo " -> Building kubi operator binary"
25
- GOOS=linux CGO_ENABLED=0 GOARCH=amd64 go build -a -ldflags ' -extldflags "-static"' -v -o ./build/kubi -i $(GOPATH ) /src/$(REPO ) /cmd/main.go
25
+ CGO_ENABLED=0 GOARCH=amd64 go build -a -ldflags ' -extldflags "-static"' -v -o ./build/kubi -i $(GOPATH ) /src/$(REPO ) /cmd/main.go
26
26
Original file line number Diff line number Diff line change 1
- 1.6.0
1
+ 1.6.1
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ package services
3
3
import (
4
4
"errors"
5
5
"fmt"
6
- "github.com/ca-gip/kubi/internal/types"
7
6
"github.com/ca-gip/kubi/internal/utils"
7
+ "github.com/ca-gip/kubi/pkg/types"
8
8
"regexp"
9
9
"strings"
10
10
)
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import (
4
4
"errors"
5
5
"fmt"
6
6
"github.com/ca-gip/kubi/internal/authprovider"
7
- "github.com/ca-gip/kubi/internal/types"
8
7
"github.com/ca-gip/kubi/internal/utils"
9
8
v12 "github.com/ca-gip/kubi/pkg/apis/ca-gip/v1"
10
9
"github.com/ca-gip/kubi/pkg/generated/clientset/versioned"
10
+ "github.com/ca-gip/kubi/pkg/types"
11
11
corev1 "k8s.io/api/core/v1"
12
12
v1n "k8s.io/api/networking/v1"
13
13
"k8s.io/api/rbac/v1"
Original file line number Diff line number Diff line change 6
6
"errors"
7
7
"fmt"
8
8
"github.com/ca-gip/kubi/internal/authprovider"
9
- "github.com/ca-gip/kubi/internal/types"
10
9
"github.com/ca-gip/kubi/internal/utils"
10
+ "github.com/ca-gip/kubi/pkg/types"
11
11
"github.com/dgrijalva/jwt-go"
12
12
"gopkg.in/yaml.v2"
13
13
"io"
Original file line number Diff line number Diff line change 4
4
"crypto/tls"
5
5
"crypto/x509"
6
6
"encoding/base64"
7
- "github.com/ca-gip/kubi/internal /types"
7
+ "github.com/ca-gip/kubi/pkg /types"
8
8
"github.com/go-ozzo/ozzo-validation"
9
9
"github.com/go-ozzo/ozzo-validation/is"
10
10
"io/ioutil"
File renamed without changes.
You can’t perform that action at this time.
0 commit comments