-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheckpoint_container.go
208 lines (187 loc) · 5.78 KB
/
checkpoint_container.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
Copyright 2022 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 e2enode
import (
"archive/tar"
"context"
"encoding/json"
"fmt"
"io"
"net/http"
"os"
"strings"
"time"
"github.com/onsi/ginkgo/v2"
v1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
clientset "k8s.io/client-go/kubernetes"
restclient "k8s.io/client-go/rest"
"k8s.io/kubernetes/test/e2e/framework"
e2epod "k8s.io/kubernetes/test/e2e/framework/pod"
testutils "k8s.io/kubernetes/test/utils"
imageutils "k8s.io/kubernetes/test/utils/image"
admissionapi "k8s.io/pod-security-admission/api"
)
const (
// timeout for proxy requests.
proxyTimeout = 2 * time.Minute
)
type checkpointResult struct {
Items []string `json:"items"`
}
// proxyPostRequest performs a post on a node proxy endpoint given the nodename and rest client.
func proxyPostRequest(ctx context.Context, c clientset.Interface, node, endpoint string, port int) (restclient.Result, error) {
// proxy tends to hang in some cases when Node is not ready. Add an artificial timeout for this call. #22165
var result restclient.Result
finished := make(chan struct{}, 1)
go func() {
result = c.CoreV1().RESTClient().Post().
Resource("nodes").
SubResource("proxy").
Name(fmt.Sprintf("%v:%v", node, port)).
Suffix(endpoint).
Do(ctx)
finished <- struct{}{}
}()
select {
case <-finished:
return result, nil
case <-ctx.Done():
return restclient.Result{}, nil
case <-time.After(proxyTimeout):
return restclient.Result{}, nil
}
}
var _ = SIGDescribe("Checkpoint Container [NodeFeature:CheckpointContainer]", func() {
f := framework.NewDefaultFramework("checkpoint-container-test")
f.NamespacePodSecurityEnforceLevel = admissionapi.LevelBaseline
ginkgo.It("will checkpoint a container out of a pod", func(ctx context.Context) {
ginkgo.By("creating a target pod")
podClient := e2epod.NewPodClient(f)
pod := podClient.CreateSync(ctx, &v1.Pod{
ObjectMeta: metav1.ObjectMeta{Name: "checkpoint-container-pod"},
Spec: v1.PodSpec{
Containers: []v1.Container{
{
Name: "test-container-1",
Image: imageutils.GetE2EImage(imageutils.BusyBox),
Command: []string{"/bin/sleep"},
Args: []string{"10000"},
},
},
},
})
p, err := podClient.Get(
ctx,
pod.Name,
metav1.GetOptions{},
)
framework.ExpectNoError(err)
isReady, err := testutils.PodRunningReady(p)
framework.ExpectNoError(err)
framework.ExpectEqual(
isReady,
true,
"pod should be ready",
)
framework.Logf(
"About to checkpoint container %q on %q",
pod.Spec.Containers[0].Name,
pod.Spec.NodeName,
)
result, err := proxyPostRequest(
ctx,
f.ClientSet,
pod.Spec.NodeName,
fmt.Sprintf(
"checkpoint/%s/%s/%s",
f.Namespace.Name,
pod.Name,
pod.Spec.Containers[0].Name,
),
framework.KubeletPort,
)
framework.ExpectNoError(err)
err = result.Error()
if err != nil {
statusError, ok := err.(*apierrors.StatusError)
if !ok {
framework.Failf("got error %#v, expected StatusError", err)
}
// If we are testing against a kubelet with ContainerCheckpoint == false
// we should get a 404. So a 404 is (also) a good sign.
if (int(statusError.ErrStatus.Code)) == http.StatusNotFound {
ginkgo.Skip("Feature 'ContainerCheckpoint' is not enabled and not available")
return
}
// If the container engine has not implemented the Checkpoint CRI API
// we will get 500 and a message with
// '(rpc error: code = Unimplemented desc = unknown method CheckpointContainer'
if (int(statusError.ErrStatus.Code)) == http.StatusInternalServerError {
if strings.Contains(
statusError.ErrStatus.Message,
"(rpc error: code = Unimplemented desc = unknown method CheckpointContainer",
) {
ginkgo.Skip("Container engine does not implement 'CheckpointContainer'")
return
}
}
framework.Failf("Unexpected status code (%d) during 'CheckpointContainer'", statusError.ErrStatus.Code)
}
framework.ExpectNoError(err)
// Checkpointing actually worked. Verify that the checkpoint exists and that
// it is a checkpoint.
raw, err := result.Raw()
framework.ExpectNoError(err)
answer := checkpointResult{}
err = json.Unmarshal(raw, &answer)
framework.ExpectNoError(err)
for _, item := range answer.Items {
// Check that the file exists
_, err := os.Stat(item)
framework.ExpectNoError(err)
// Check the content of the tar file
// At least looking for the following files
// * spec.dump
// * config.dump
// * checkpoint/inventory.img
// If these files exist in the checkpoint archive it is
// probably a complete checkpoint.
checkForFiles := map[string]bool{
"spec.dump": false,
"config.dump": false,
"checkpoint/inventory.img": false,
}
fileReader, err := os.Open(item)
framework.ExpectNoError(err)
tr := tar.NewReader(fileReader)
for {
hdr, err := tr.Next()
if err == io.EOF {
// End of archive
break
}
framework.ExpectNoError(err)
if _, key := checkForFiles[hdr.Name]; key {
checkForFiles[hdr.Name] = true
}
}
for fileName := range checkForFiles {
framework.ExpectEqual(checkForFiles[fileName], true)
}
// cleanup checkpoint archive
os.RemoveAll(item)
}
})
})