forked from kubernetes/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestclient.go
85 lines (74 loc) · 2.75 KB
/
restclient.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
// Copyright 2017 The Kubernetes Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sidecar
import (
"context"
"github.com/kubernetes/dashboard/src/app/backend/args"
"k8s.io/client-go/rest"
)
// SidecarRESTClient is used to make raw requests to sidecar.
type SidecarRESTClient interface {
// Creates a new GET HTTP request to sidecar, specified by the path param, to the V1 API
// endpoint. The path param is without the API prefix, e.g.,
// /model/namespaces/default/pod-list/foo/metrics/memory-usage
Get(path string) RequestInterface
HealthCheck() error
}
// RequestInterface is an interface that allows to make operations on pure request object.
// Separation is done to allow testing.
type RequestInterface interface {
DoRaw(context.Context) ([]byte, error)
AbsPath(segments ...string) *rest.Request
}
// InClusterSidecarClient is an in-cluster implementation of a Sidecar client. Talks with Sidecar
// through service proxy.
type inClusterSidecarClient struct {
client rest.Interface
}
// Get creates request to given path.
func (c inClusterSidecarClient) Get(path string) RequestInterface {
return c.client.Get().
Namespace(args.Holder.GetNamespace()).
Resource("services").
Name("dashboard-metrics-scraper").
SubResource("proxy").
Suffix(path)
}
// HealthCheck does a health check of the application.
// Returns nil if connection to application can be established, error object otherwise.
func (self inClusterSidecarClient) HealthCheck() error {
_, err := self.client.Get().
Namespace(args.Holder.GetNamespace()).
Resource("services").
Name("dashboard-metrics-scraper").
SubResource("proxy").
Suffix("/healthz").
DoRaw(context.TODO())
return err
}
// RemoteSidecarClient is an implementation of a remote Sidecar client. Talks with Sidecar
// through raw RESTClient.
type remoteSidecarClient struct {
client rest.Interface
}
// Get creates request to given path.
func (c remoteSidecarClient) Get(path string) RequestInterface {
return c.client.Get().Suffix(path)
}
// HealthCheck does a health check of the application.
// Returns nil if connection to application can be established, error object otherwise.
func (self remoteSidecarClient) HealthCheck() error {
_, err := self.Get("healthz").AbsPath("/").DoRaw(context.TODO())
return err
}