-
Notifications
You must be signed in to change notification settings - Fork 37
/
types.go
85 lines (69 loc) · 2.08 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"encoding/json"
"fmt"
"k8s.io/client-go/pkg/api/meta"
"k8s.io/client-go/pkg/api/v1"
metav1 "k8s.io/client-go/pkg/apis/meta/v1"
"k8s.io/client-go/pkg/runtime/schema"
"k8s.io/client-go/pkg/types"
)
// Only required to authenticate against GKE clusters
//_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
type PodToService struct {
metav1.TypeMeta `json:",inline"`
Metadata v1.ObjectMeta `json:"metadata"`
PodName string `json:"podName"`
PodAddress string `json:"podAddress"`
PodUID types.UID `json:"podUID"`
ServiceName string `json:"serviceName,omitempty"`
}
func (p PodToService) String() string {
return fmt.Sprintf("Pod [%s:%s] is backing service %s\n", p.Metadata.Name, p.PodAddress, p.ServiceName)
}
type PodToServiceList struct {
metav1.TypeMeta `json:",inline"`
Metadata metav1.ListMeta `json:"metadata"`
Items []PodToService `json:"items"`
}
// Required to satisfy Object interface
func (p *PodToService) GetObjectKind() schema.ObjectKind {
return &p.TypeMeta
}
// Required to satisfy ObjectMetaAccessor interface
func (p *PodToService) GetObjectMeta() meta.Object {
return &p.Metadata
}
// Required to satisfy Object interface
func (pl *PodToServiceList) GetObjectKind() schema.ObjectKind {
return &pl.TypeMeta
}
// Required to satisfy ListMetaAccessor interface
func (pl *PodToServiceList) GetListMeta() metav1.List {
return &pl.Metadata
}
// The code below is used only to work around a known problem with third-party
// resources and ugorji. If/when these issues are resolved, the code below
// should no longer be required.
type PodToServiceListCopy PodToServiceList
type PodToServiceCopy PodToService
func (p *PodToService) UnmarshalJSON(data []byte) error {
tmp := PodToServiceCopy{}
err := json.Unmarshal(data, &tmp)
if err != nil {
return err
}
tmp2 := PodToService(tmp)
*p = tmp2
return nil
}
func (pl *PodToServiceList) UnmarshalJSON(data []byte) error {
tmp := PodToServiceListCopy{}
err := json.Unmarshal(data, &tmp)
if err != nil {
return err
}
tmp2 := PodToServiceList(tmp)
*pl = tmp2
return nil
}