forked from cloudnative-pg/cloudnative-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurl.go
75 lines (65 loc) · 1.98 KB
/
curl.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
/*
Copyright The CloudNativePG Contributors
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 utils
import (
"fmt"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/ptr"
"github.com/cloudnative-pg/cloudnative-pg/pkg/utils"
)
// CurlClient returns the Pod definition for a curl client
func CurlClient(namespace string) corev1.Pod {
seccompProfile := &corev1.SeccompProfile{
Type: corev1.SeccompProfileTypeRuntimeDefault,
}
if !utils.HaveSeccompSupport() {
seccompProfile = nil
}
curlPod := corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: "curl",
Labels: map[string]string{"run": "curl"},
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{
{
Name: "curl",
Image: "curlimages/curl:7.82.0",
Command: []string{"sleep", "3600"},
SecurityContext: &corev1.SecurityContext{
AllowPrivilegeEscalation: ptr.To(false),
SeccompProfile: seccompProfile,
},
},
},
DNSPolicy: corev1.DNSClusterFirst,
RestartPolicy: corev1.RestartPolicyAlways,
SecurityContext: &corev1.PodSecurityContext{
SeccompProfile: seccompProfile,
},
},
}
return curlPod
}
// CurlGetMetrics returns true if test connection is successful else false
func CurlGetMetrics(namespace, curlPodName, podIP string, port int) (string, error) {
out, _, err := RunRetry(fmt.Sprintf(
"kubectl exec -n %v %v -- curl -s %v:%v/metrics",
namespace,
curlPodName,
podIP,
port))
return out, err
}