Skip to content

Commit 406e4a1

Browse files
committed
add struct for statusChecker and fix/add tests
1 parent 4cf5750 commit 406e4a1

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

pkg/skaffold/deploy/resource/deployment.go

+6-7
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,10 @@ func (d *Deployment) Status() Status {
137137
return d.status
138138
}
139139

140+
func (d *Deployment) IsStatusCheckCompleteOrCancelled() bool {
141+
return d.done || d.statusCode == proto.StatusCode_STATUSCHECK_CONTEXT_CANCELLED
142+
}
143+
140144
func (d *Deployment) StatusMessage() string {
141145
for _, p := range d.pods {
142146
if s := p.ActionableError(); s.ErrCode != proto.StatusCode_STATUSCHECK_SUCCESS {
@@ -146,10 +150,6 @@ func (d *Deployment) StatusMessage() string {
146150
return d.status.String()
147151
}
148152

149-
func (d *Deployment) IsStatusCheckCompleteOrCancelled() bool {
150-
return d.done || d.statusCode == proto.StatusCode_STATUSCHECK_CONTEXT_CANCELLED
151-
}
152-
153153
func (d *Deployment) MarkComplete() {
154154
d.done = true
155155
}
@@ -272,9 +272,8 @@ func (d *Deployment) fetchPods(ctx context.Context) error {
272272
if !found || originalPod.StatusUpdated(p) {
273273
d.status.changed = true
274274
switch p.ActionableError().ErrCode {
275-
case proto.StatusCode_STATUSCHECK_CONTAINER_CREATING:
276-
event.ResourceStatusCheckEventUpdated(p.String(), p.ActionableError())
277-
case proto.StatusCode_STATUSCHECK_POD_INITIALIZING:
275+
case proto.StatusCode_STATUSCHECK_CONTAINER_CREATING,
276+
proto.StatusCode_STATUSCHECK_POD_INITIALIZING:
278277
event.ResourceStatusCheckEventUpdated(p.String(), p.ActionableError())
279278
default:
280279
event.ResourceStatusCheckEventCompleted(p.String(), p.ActionableError())

pkg/skaffold/deploy/status_check.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ var (
4242
defaultStatusCheckDeadline = 2 * time.Minute
4343

4444
// Poll period for checking set to 1 second
45-
defaultPollPeriodInMilliseconds = 100
45+
defaultPollPeriodInMilliseconds = 1000
4646

4747
// report resource status for pending resources 5 seconds.
48-
reportStatusTime = 500 * time.Millisecond
48+
reportStatusTime = 5 * time.Second
4949
)
5050

5151
const (

0 commit comments

Comments
 (0)