Skip to content

Commit 4e56a25

Browse files
committed
fix: ui spec to accept file
1 parent 876c0c5 commit 4e56a25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

discovery/pkg/models/credentials.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package models
22

33
type IntegrationCredentials struct {
4-
KubeConfig string `json:"kubeconfig"`
4+
KubeConfig []byte `json:"kubeconfig"`
55
}

global/constants/configs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ const (
99
)
1010

1111
type IntegrationCredentials struct {
12-
KubeConfig string `json:"kubeconfig"`
12+
KubeConfig []byte `json:"kubeconfig"`
1313
}

0 commit comments

Comments
 (0)