diff --git a/client/DotNet/Armada.Client/ClientGenerated.cs b/client/DotNet/Armada.Client/ClientGenerated.cs index 2419797392e..c30e358d4ab 100644 --- a/client/DotNet/Armada.Client/ClientGenerated.cs +++ b/client/DotNet/Armada.Client/ClientGenerated.cs @@ -578,6 +578,9 @@ public enum ApiCause [System.Runtime.Serialization.EnumMember(Value = @"OOM")] OOM = 2, + [System.Runtime.Serialization.EnumMember(Value = @"DeadlineExceeded")] + DeadlineExceeded = 3, + } [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.0.27.0 (Newtonsoft.Json v12.0.0.0)")] diff --git a/internal/executor/util/pod_status.go b/internal/executor/util/pod_status.go index e7b273bdd65..fb4de225cfc 100644 --- a/internal/executor/util/pod_status.go +++ b/internal/executor/util/pod_status.go @@ -19,6 +19,7 @@ var invalidImageNameStatesSet = util.StringListToSet([]string{"InvalidImageName" const oomKilledReason = "OOMKilled" const evictedReason = "Evicted" +const deadlineExceeded = "DeadlineExceeded" func ExtractPodStuckReason(pod *v1.Pod) string { containerStatuses := pod.Status.ContainerStatuses @@ -63,6 +64,10 @@ func ExtractPodFailedCause(pod *v1.Pod) api.Cause { if pod.Status.Reason == evictedReason { return api.Cause_Evicted } + if pod.Status.Reason == deadlineExceeded { + return api.Cause_DeadlineExceeded + } + containerStatuses := pod.Status.ContainerStatuses containerStatuses = append(containerStatuses, pod.Status.InitContainerStatuses...) @@ -96,6 +101,11 @@ func ExtractFailedPodContainerStatuses(pod *v1.Pod) []*api.ContainerStatus { returnStatuses := make([]*api.ContainerStatus, 0, len(containerStatuses)) for _, containerStatus := range containerStatuses { + if containerStatus.State.Terminated == nil { + //This function is meant to be finding exit stauses of containers + //Skip non-finished containers + continue + } status := &api.ContainerStatus{ Name: containerStatus.Name, Cause: api.Cause_Error, @@ -103,11 +113,9 @@ func ExtractFailedPodContainerStatuses(pod *v1.Pod) []*api.ContainerStatus { if isOom(containerStatus) { status.Cause = api.Cause_OOM } - if containerStatus.State.Terminated != nil { - status.ExitCode = containerStatus.State.Terminated.ExitCode - status.Message = containerStatus.State.Terminated.Message - status.Reason = containerStatus.State.Terminated.Reason - } + status.ExitCode = containerStatus.State.Terminated.ExitCode + status.Message = containerStatus.State.Terminated.Message + status.Reason = containerStatus.State.Terminated.Reason returnStatuses = append(returnStatuses, status) } diff --git a/internal/executor/util/pod_status_test.go b/internal/executor/util/pod_status_test.go index b419a5c1b87..80022d68fdb 100644 --- a/internal/executor/util/pod_status_test.go +++ b/internal/executor/util/pod_status_test.go @@ -3,9 +3,11 @@ package util import ( "strings" "testing" + "time" "github.com/stretchr/testify/assert" v1 "k8s.io/api/core/v1" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "github.com/G-Research/armada/pkg/api" ) @@ -13,11 +15,13 @@ import ( var evictedPod *v1.Pod var oomPod *v1.Pod var customErrorPod *v1.Pod +var deadlineExceededPod *v1.Pod func init() { evictedPod = createEvictedPod() oomPod = createFailedPod(createOomContainerStatus()) customErrorPod = createFailedPod(createCustomErrorContainerStatus()) + deadlineExceededPod = createDeadlineExceededPod() } func TestContainersAreRetryable_ReturnTrue_WhenNoContainerInImagePullBackoff(t *testing.T) { @@ -126,6 +130,9 @@ func TestExtractPodFailedReason(t *testing.T) { failedReason := ExtractPodFailedReason(evictedPod) assert.Equal(t, failedReason, evictedPod.Status.Message) + failedReason = ExtractPodFailedReason(deadlineExceededPod) + assert.Equal(t, failedReason, deadlineExceededPod.Status.Message) + failedReason = ExtractPodFailedReason(oomPod) assert.True(t, strings.Contains(failedReason, oomPod.Status.ContainerStatuses[0].State.Terminated.Reason)) @@ -137,6 +144,9 @@ func TestExtractPodFailedCause(t *testing.T) { failedCause := ExtractPodFailedCause(evictedPod) assert.Equal(t, failedCause, api.Cause_Evicted) + failedCause = ExtractPodFailedCause(deadlineExceededPod) + assert.Equal(t, failedCause, api.Cause_DeadlineExceeded) + failedCause = ExtractPodFailedCause(oomPod) assert.Equal(t, failedCause, api.Cause_OOM) @@ -148,6 +158,9 @@ func TestExtractFailedPodContainerStatuses(t *testing.T) { containerStatuses := ExtractFailedPodContainerStatuses(evictedPod) assert.Equal(t, len(containerStatuses), 0) + containerStatuses = ExtractFailedPodContainerStatuses(deadlineExceededPod) + assert.Equal(t, len(containerStatuses), 0) + containerStatuses = ExtractFailedPodContainerStatuses(oomPod) assert.Equal(t, len(containerStatuses), 1) assert.Equal(t, containerStatuses[0].Reason, oomPod.Status.ContainerStatuses[0].State.Terminated.Reason) @@ -202,3 +215,23 @@ func createEvictedPod() *v1.Pod { }, } } + +func createDeadlineExceededPod() *v1.Pod { + //For DeadlineExceeded, Kubernetes leaves the container statuses as Running even though it kills them on the host + containerStatus := v1.ContainerStatus{ + Name: "app", + State: v1.ContainerState{ + Running: &v1.ContainerStateRunning{ + StartedAt: metav1.NewTime(time.Now()), + }, + }, + } + return &v1.Pod{ + Status: v1.PodStatus{ + Phase: v1.PodFailed, + Reason: "DeadlineExceeded", + Message: "Pod was active on the node longer than the specified deadline", + ContainerStatuses: []v1.ContainerStatus{containerStatus}, + }, + } +} diff --git a/pkg/api/api.swagger.go b/pkg/api/api.swagger.go index 5f3e41bfb61..2e5772ce47b 100644 --- a/pkg/api/api.swagger.go +++ b/pkg/api/api.swagger.go @@ -252,7 +252,8 @@ func SwaggerJsonTemplate() string { " \"enum\": [\n" + " \"Error\",\n" + " \"Evicted\",\n" + - " \"OOM\"\n" + + " \"OOM\",\n" + + " \"DeadlineExceeded\"\n" + " ]\n" + " },\n" + " \"apiContainerStatus\": {\n" + diff --git a/pkg/api/api.swagger.json b/pkg/api/api.swagger.json index 7f2d13bfb7c..b640ed30092 100644 --- a/pkg/api/api.swagger.json +++ b/pkg/api/api.swagger.json @@ -241,7 +241,8 @@ "enum": [ "Error", "Evicted", - "OOM" + "OOM", + "DeadlineExceeded" ] }, "apiContainerStatus": { diff --git a/pkg/api/event.pb.go b/pkg/api/event.pb.go index d4a9bccd833..fd87baed4b7 100644 --- a/pkg/api/event.pb.go +++ b/pkg/api/event.pb.go @@ -40,21 +40,24 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type Cause int32 const ( - Cause_Error Cause = 0 - Cause_Evicted Cause = 1 - Cause_OOM Cause = 2 + Cause_Error Cause = 0 + Cause_Evicted Cause = 1 + Cause_OOM Cause = 2 + Cause_DeadlineExceeded Cause = 3 ) var Cause_name = map[int32]string{ 0: "Error", 1: "Evicted", 2: "OOM", + 3: "DeadlineExceeded", } var Cause_value = map[string]int32{ - "Error": 0, - "Evicted": 1, - "OOM": 2, + "Error": 0, + "Evicted": 1, + "OOM": 2, + "DeadlineExceeded": 3, } func (x Cause) String() string { @@ -2098,110 +2101,111 @@ func init() { func init() { proto.RegisterFile("pkg/api/event.proto", fileDescriptor_7758595c3bb8cf56) } var fileDescriptor_7758595c3bb8cf56 = []byte{ - // 1644 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcf, 0x6f, 0x1b, 0xc5, - 0x17, 0xf7, 0x3a, 0x71, 0x6c, 0x3f, 0x27, 0x4e, 0x32, 0x4d, 0xd2, 0xfd, 0xba, 0xad, 0x6b, 0xb9, - 0x52, 0x95, 0x6f, 0x51, 0xed, 0x92, 0xa2, 0xaa, 0x54, 0x05, 0x41, 0x52, 0x07, 0xc7, 0x6a, 0xfa, - 0x63, 0xd3, 0x9e, 0x38, 0x58, 0xfb, 0x63, 0xe2, 0x4c, 0xb2, 0xde, 0xd9, 0xee, 0xce, 0x86, 0x84, - 0xaa, 0x12, 0xe2, 0xc0, 0x85, 0x4b, 0x25, 0xc4, 0x05, 0x50, 0x2b, 0xf8, 0x33, 0x90, 0x90, 0x10, - 0xa7, 0x4a, 0x5c, 0x2a, 0x71, 0x29, 0x07, 0x7e, 0xa5, 0xfc, 0x1f, 0xa0, 0x99, 0xd9, 0xb5, 0x77, - 0x1d, 0xa7, 0x3d, 0x20, 0xa4, 0x34, 0xe2, 0xb4, 0x3b, 0x6f, 0xde, 0x9b, 0x79, 0xef, 0x33, 0xf3, - 0x7e, 0x0d, 0x1c, 0x73, 0xb7, 0x3a, 0x75, 0xdd, 0x25, 0x75, 0xbc, 0x8d, 0x1d, 0x56, 0x73, 0x3d, - 0xca, 0x28, 0x1a, 0xd1, 0x5d, 0x52, 0x3a, 0xdd, 0xa1, 0xb4, 0x63, 0xe3, 0xba, 0x20, 0x19, 0xc1, - 0x7a, 0x9d, 0x91, 0x2e, 0xf6, 0x99, 0xde, 0x75, 0x25, 0x57, 0xa9, 0x27, 0x7a, 0x2f, 0xc0, 0x01, - 0x0e, 0x89, 0x27, 0x06, 0xa5, 0x70, 0xd7, 0x65, 0xbb, 0xe1, 0xe4, 0xf9, 0x0e, 0x61, 0x1b, 0x81, - 0x51, 0x33, 0x69, 0xb7, 0xde, 0xa1, 0x1d, 0xda, 0xe7, 0xe2, 0x23, 0x31, 0x10, 0x7f, 0x21, 0xfb, - 0xc9, 0x70, 0x2d, 0xbe, 0x87, 0xee, 0x38, 0x94, 0xe9, 0x8c, 0x50, 0xc7, 0x0f, 0x67, 0xdf, 0xd8, - 0xba, 0xec, 0xd7, 0x08, 0xe5, 0xb3, 0x5d, 0xdd, 0xdc, 0x20, 0x0e, 0xf6, 0x76, 0xeb, 0x91, 0x4a, - 0x1e, 0xf6, 0x69, 0xe0, 0x99, 0xb8, 0xde, 0xc1, 0x0e, 0xf6, 0x74, 0x86, 0x2d, 0x29, 0x55, 0xfd, - 0x5e, 0x81, 0xe9, 0x16, 0x35, 0xd6, 0x02, 0xa3, 0x4b, 0x18, 0xc3, 0x56, 0x83, 0x9b, 0x8d, 0x66, - 0x61, 0x6c, 0x93, 0x1a, 0x6d, 0x62, 0xa9, 0x4a, 0x45, 0x99, 0xcf, 0x6b, 0x99, 0x4d, 0x6a, 0xac, - 0x58, 0xe8, 0x24, 0x00, 0x27, 0xfb, 0x98, 0xf1, 0xa9, 0xb4, 0x98, 0xca, 0x6d, 0x52, 0x63, 0x0d, - 0xb3, 0x15, 0x0b, 0xcd, 0x40, 0x46, 0x58, 0xae, 0x8e, 0x48, 0x19, 0x31, 0x40, 0x6f, 0x43, 0xd6, - 0xf4, 0x30, 0xdf, 0x51, 0x1d, 0xad, 0x28, 0xf3, 0x85, 0x85, 0x52, 0x4d, 0x9a, 0x51, 0x8b, 0x8c, - 0xad, 0xdd, 0x89, 0x80, 0x5c, 0xcc, 0x3d, 0xf9, 0xf5, 0x74, 0xea, 0xe1, 0x6f, 0xa7, 0x15, 0x2d, - 0x12, 0x42, 0x15, 0x18, 0xd9, 0xa4, 0x86, 0x9a, 0x11, 0xb2, 0xb9, 0x9a, 0xee, 0x92, 0x5a, 0x8b, - 0x1a, 0x8b, 0xa3, 0x9c, 0x53, 0xe3, 0x53, 0xd5, 0x2f, 0x15, 0x28, 0xb6, 0xa8, 0x71, 0x9b, 0x6f, - 0x77, 0xe8, 0xf4, 0xaf, 0xfe, 0xa8, 0xc0, 0x5c, 0x8b, 0x1a, 0xd7, 0x02, 0xd7, 0x26, 0xa6, 0xce, - 0xf0, 0x32, 0x0d, 0x9c, 0xc3, 0x87, 0xf2, 0x59, 0x98, 0xa4, 0x1e, 0xe9, 0x10, 0x47, 0xb7, 0xdb, - 0xa1, 0x4e, 0x19, 0xb1, 0xfe, 0x44, 0x44, 0x6e, 0x71, 0xdd, 0xaa, 0xdf, 0x4a, 0xac, 0xaf, 0x63, - 0xdd, 0x3f, 0x84, 0x77, 0xe5, 0x14, 0x80, 0x69, 0x07, 0x3e, 0xc3, 0x5e, 0xdf, 0x80, 0x7c, 0x48, - 0x59, 0xb1, 0xaa, 0x3f, 0x2b, 0x30, 0x1b, 0x29, 0xaf, 0x61, 0x16, 0x78, 0xce, 0x2b, 0x67, 0x03, - 0x9a, 0x83, 0x31, 0x0f, 0xeb, 0x3e, 0x75, 0xd4, 0x31, 0x31, 0x15, 0x8e, 0xaa, 0x5f, 0x2b, 0x30, - 0x13, 0xd9, 0xd6, 0xd8, 0x71, 0x89, 0x77, 0x08, 0x5d, 0xe1, 0x2f, 0x05, 0x26, 0x5b, 0xd4, 0xb8, - 0x85, 0x1d, 0x8b, 0x38, 0x9d, 0x57, 0x0d, 0xf9, 0x33, 0x30, 0xb1, 0x15, 0x18, 0xd8, 0x73, 0x30, - 0xc3, 0x3e, 0xe7, 0x90, 0x07, 0x30, 0xde, 0x27, 0xae, 0x88, 0x35, 0x5c, 0x6a, 0xb5, 0x9d, 0xa0, - 0x6b, 0x60, 0x4f, 0xcd, 0x56, 0x94, 0xf9, 0x8c, 0x96, 0x77, 0xa9, 0x75, 0x43, 0x10, 0xaa, 0x5f, - 0xa5, 0x05, 0x02, 0x5a, 0xe0, 0x38, 0x47, 0x15, 0x81, 0x13, 0x90, 0x77, 0xa8, 0x85, 0xdb, 0x8e, - 0xde, 0xc5, 0x02, 0x80, 0xbc, 0x96, 0xe3, 0x84, 0x1b, 0x7a, 0x17, 0x0f, 0xc0, 0x93, 0x1b, 0x84, - 0xe7, 0x87, 0x11, 0x38, 0xc6, 0xe3, 0x8c, 0xd3, 0xf1, 0xb0, 0xef, 0xaf, 0x38, 0xeb, 0xf4, 0x3f, - 0x88, 0x92, 0x10, 0xa1, 0xf7, 0x61, 0x9a, 0x48, 0x78, 0xda, 0xba, 0x65, 0xf1, 0x2f, 0xf6, 0xd5, - 0x7c, 0x65, 0x64, 0xbe, 0xb0, 0x50, 0x8b, 0x92, 0xe3, 0x20, 0x7e, 0xb5, 0x90, 0xf0, 0x6e, 0x24, - 0xd0, 0x70, 0x98, 0xb7, 0xab, 0x4d, 0x91, 0x01, 0x72, 0x69, 0x09, 0x66, 0x87, 0xb2, 0xa2, 0x29, - 0x18, 0xd9, 0xc2, 0xbb, 0x02, 0xfd, 0x8c, 0xc6, 0x7f, 0x39, 0xba, 0xdb, 0xba, 0x1d, 0xe0, 0x10, - 0x76, 0x39, 0xb8, 0x92, 0xbe, 0xac, 0x54, 0xbf, 0x4b, 0x83, 0xda, 0xa2, 0xc6, 0x5d, 0x47, 0x37, - 0x6c, 0x7c, 0x87, 0xae, 0x99, 0x1b, 0xd8, 0x0a, 0x6c, 0x7c, 0x44, 0x02, 0xed, 0xfe, 0x13, 0xce, - 0xbe, 0xec, 0x84, 0x73, 0x2f, 0x3c, 0xe1, 0xfc, 0xa0, 0x13, 0x3c, 0x1e, 0x15, 0x29, 0x76, 0x59, - 0x27, 0xf6, 0x91, 0x49, 0x4f, 0xa8, 0x01, 0x80, 0x77, 0x08, 0x6b, 0x9b, 0xd4, 0xc2, 0xbe, 0x9a, - 0x15, 0xf7, 0xb5, 0x1a, 0xdd, 0xd7, 0x98, 0xa9, 0xb5, 0xc6, 0x0e, 0x61, 0x4b, 0x9c, 0x49, 0x5c, - 0xbc, 0xc5, 0xb4, 0xaa, 0x68, 0x79, 0x1c, 0xd1, 0xf6, 0x83, 0x9f, 0x7b, 0x19, 0xf8, 0xf9, 0x17, - 0x82, 0x0f, 0x83, 0xee, 0xb5, 0x04, 0xc8, 0xa4, 0x0e, 0xd3, 0x79, 0xf5, 0xdc, 0xf6, 0x99, 0xce, - 0x02, 0xee, 0x5f, 0x05, 0xa1, 0xef, 0x8c, 0xd0, 0x77, 0x29, 0x9a, 0x5e, 0x13, 0xb3, 0xda, 0xb4, - 0x99, 0x24, 0x60, 0x1f, 0x55, 0x20, 0x63, 0xea, 0x81, 0x8f, 0xd5, 0xf1, 0x8a, 0x32, 0x5f, 0x5c, - 0x00, 0x29, 0xc7, 0x29, 0x9a, 0x9c, 0x28, 0x5d, 0x85, 0x62, 0xd2, 0xd0, 0xb8, 0x87, 0xe5, 0x87, - 0x78, 0x58, 0x26, 0xee, 0x61, 0x8f, 0xd2, 0x61, 0xcd, 0x6e, 0x9a, 0x18, 0x5b, 0xaf, 0xde, 0x25, - 0xf9, 0xd7, 0xf3, 0xc8, 0xa7, 0xa3, 0x22, 0x8f, 0xdc, 0x65, 0xc4, 0x26, 0xbe, 0x68, 0x92, 0x8e, - 0x24, 0x44, 0x14, 0x66, 0x57, 0xf5, 0x1d, 0x2d, 0x6c, 0xed, 0xfc, 0x65, 0xea, 0xdd, 0xc2, 0x1e, - 0xa1, 0x56, 0xe8, 0x5f, 0x17, 0x23, 0xff, 0x1a, 0xc4, 0xa1, 0x36, 0x54, 0x4a, 0x3a, 0x9c, 0xec, - 0xab, 0x86, 0xaf, 0xfb, 0x4f, 0xc2, 0x5a, 0x69, 0x07, 0x4a, 0x07, 0x6f, 0x3b, 0xe4, 0xfa, 0x5f, - 0x8b, 0x5f, 0x7f, 0x9e, 0xdc, 0x64, 0x7b, 0x5b, 0x8b, 0xb7, 0xb7, 0x35, 0x77, 0xab, 0x23, 0x8c, - 0x8c, 0xda, 0xdb, 0xda, 0xed, 0x40, 0x77, 0x18, 0x61, 0xbb, 0x71, 0x77, 0xf9, 0x46, 0x96, 0xfd, - 0x1a, 0x76, 0x3d, 0x42, 0x3d, 0xc2, 0xc8, 0x87, 0x87, 0xb0, 0x36, 0x7e, 0xac, 0x00, 0x6a, 0x51, - 0x63, 0x49, 0x77, 0x4c, 0x6c, 0xdb, 0x87, 0xb0, 0x38, 0xac, 0x3e, 0x92, 0x2f, 0x05, 0xa1, 0x86, - 0x87, 0x10, 0xc2, 0x2f, 0xd2, 0x02, 0xc2, 0x3b, 0xd8, 0xeb, 0x12, 0x47, 0x67, 0x47, 0x34, 0x2e, - 0xbe, 0xb8, 0xc3, 0x88, 0x25, 0xe0, 0x5c, 0xa2, 0x3f, 0xfc, 0x24, 0x07, 0xe3, 0x02, 0x8f, 0x55, - 0xec, 0xfb, 0x7a, 0x07, 0xa3, 0x4b, 0x90, 0xf7, 0xa3, 0x47, 0x1f, 0x81, 0x4c, 0x61, 0x61, 0x2e, - 0x0a, 0x18, 0xc9, 0xd7, 0xa0, 0x66, 0x4a, 0xeb, 0xb3, 0xa2, 0xf3, 0x30, 0x26, 0xc0, 0xb0, 0x42, - 0xc7, 0x3c, 0x16, 0x09, 0xc5, 0xde, 0x5f, 0x9a, 0x29, 0x2d, 0x64, 0x42, 0xcb, 0x30, 0x69, 0x45, - 0x4f, 0x1f, 0xed, 0x75, 0x1a, 0x38, 0x96, 0x3a, 0x25, 0xe4, 0x4e, 0x44, 0x72, 0x43, 0x5e, 0x46, - 0x9a, 0x29, 0xad, 0x68, 0x25, 0xc8, 0x7c, 0x5b, 0x5b, 0x3c, 0x3a, 0x88, 0x13, 0x89, 0x6d, 0x1b, - 0x7b, 0x8a, 0xe0, 0xdb, 0x4a, 0x26, 0xb4, 0x04, 0x45, 0xf1, 0xd7, 0xf6, 0xc2, 0x3e, 0xbf, 0x77, - 0x60, 0x71, 0xb1, 0xc4, 0x23, 0x40, 0x33, 0xa5, 0x4d, 0xd8, 0x71, 0x2a, 0x7a, 0x07, 0x24, 0xa1, - 0x8d, 0x65, 0x43, 0x1d, 0x3e, 0x42, 0xfd, 0x2f, 0xb1, 0x46, 0xbc, 0xd9, 0x6e, 0xa6, 0xb4, 0x71, - 0x3b, 0x46, 0x44, 0x17, 0x20, 0xeb, 0xca, 0x6e, 0x57, 0x9c, 0x65, 0x54, 0x43, 0x0c, 0x34, 0xc1, - 0xcd, 0x94, 0x16, 0xb1, 0x71, 0x09, 0x4f, 0x76, 0x87, 0xe2, 0x6c, 0x63, 0x12, 0xf1, 0xa6, 0x91, - 0x4b, 0x84, 0x6c, 0x68, 0x15, 0x50, 0x20, 0x6a, 0xed, 0x36, 0xa3, 0x6d, 0x3f, 0xac, 0xb6, 0xc5, - 0xe9, 0x17, 0x16, 0x4e, 0xf5, 0x52, 0xc0, 0xb0, 0x6a, 0xbc, 0x99, 0xd2, 0xa6, 0x82, 0x81, 0x09, - 0x0e, 0xf4, 0xba, 0xa8, 0xc7, 0x44, 0x08, 0x8f, 0x01, 0x1d, 0xab, 0xd2, 0x38, 0xd0, 0x92, 0x49, - 0x5e, 0xa3, 0xb0, 0x0e, 0x11, 0xe5, 0x54, 0xe2, 0x1a, 0xc5, 0x0b, 0x14, 0x79, 0x8d, 0x42, 0x0a, - 0x5a, 0x84, 0x09, 0x2f, 0x1e, 0x90, 0xd5, 0x42, 0xf2, 0x7c, 0xf6, 0x47, 0x6b, 0x7e, 0x3e, 0x09, - 0x11, 0xf4, 0x26, 0x80, 0xd9, 0x8b, 0x97, 0xa2, 0xd8, 0x2a, 0x2c, 0x1c, 0x8f, 0x16, 0x18, 0x88, - 0xa4, 0xcd, 0x94, 0x16, 0x63, 0xe6, 0x6a, 0x9b, 0x51, 0x20, 0x53, 0x27, 0x92, 0x6a, 0x27, 0x23, - 0x1c, 0x57, 0xbb, 0xc7, 0xca, 0xb7, 0x64, 0xbd, 0xf8, 0xa2, 0x16, 0x93, 0x5b, 0x0e, 0x44, 0x1e, - 0xbe, 0x65, 0x9f, 0x19, 0x5d, 0x85, 0x42, 0xd0, 0x4f, 0xc4, 0xea, 0xa4, 0x90, 0x55, 0x0f, 0xca, - 0xd1, 0xcd, 0x94, 0x16, 0x67, 0x47, 0x6f, 0xc1, 0x78, 0xd4, 0xf7, 0x11, 0x67, 0x9d, 0xaa, 0xd3, - 0x49, 0xf1, 0xc1, 0x96, 0x8f, 0x8b, 0x93, 0x3e, 0x6d, 0x31, 0x07, 0x63, 0xe2, 0x41, 0xdb, 0xaf, - 0x7e, 0xae, 0xc0, 0xe4, 0x40, 0x0d, 0x8b, 0x10, 0x8c, 0x8a, 0x94, 0x2e, 0x03, 0xa4, 0xf8, 0x47, - 0x25, 0xc8, 0x45, 0x75, 0x77, 0x58, 0x81, 0xf6, 0xc6, 0x48, 0x85, 0x6c, 0x57, 0x86, 0x91, 0x30, - 0x3e, 0x46, 0xc3, 0x58, 0xf8, 0x19, 0x4d, 0xd4, 0xff, 0xbd, 0x92, 0x38, 0x73, 0x40, 0x49, 0x5c, - 0xbd, 0x04, 0x79, 0xa1, 0xf9, 0x75, 0xe2, 0x33, 0xf4, 0xff, 0x48, 0x5d, 0x55, 0x11, 0xa5, 0xcc, - 0xb4, 0xe0, 0x8f, 0xc7, 0x2f, 0x2d, 0xb2, 0xe7, 0x36, 0x20, 0x41, 0x5f, 0x63, 0x1e, 0xd6, 0xbb, - 0x51, 0x74, 0x2b, 0x42, 0xba, 0x17, 0xf0, 0xd3, 0xc4, 0x42, 0xaf, 0xf5, 0x35, 0x96, 0x61, 0x6b, - 0xc8, 0x8a, 0x11, 0x47, 0xd5, 0x87, 0x89, 0x96, 0x48, 0x04, 0x1a, 0xbe, 0x17, 0x60, 0x9f, 0xed, - 0x5b, 0x6d, 0x06, 0x32, 0x1f, 0xe8, 0xcc, 0xdc, 0x10, 0x6b, 0xe5, 0x34, 0x39, 0x40, 0x67, 0x61, - 0x72, 0xdd, 0xa3, 0xdd, 0x76, 0xb8, 0x0c, 0x0f, 0xe0, 0x12, 0x9d, 0x09, 0x4e, 0x0e, 0x77, 0x89, - 0xe7, 0x96, 0xd1, 0x58, 0x6e, 0x39, 0x37, 0x0f, 0x19, 0x81, 0x07, 0xca, 0x43, 0xa6, 0xe1, 0x79, - 0xd4, 0x9b, 0x4a, 0xa1, 0x02, 0x64, 0x1b, 0xdb, 0xc4, 0x64, 0xd8, 0x9a, 0x52, 0x50, 0x16, 0x46, - 0x6e, 0xde, 0x5c, 0x9d, 0x4a, 0x2f, 0xfc, 0xa2, 0x40, 0x46, 0xa6, 0xb6, 0xcb, 0x50, 0xd4, 0xb0, - 0x4b, 0x3d, 0xb6, 0x1a, 0xd8, 0x8c, 0xb8, 0x36, 0x46, 0xc5, 0xbe, 0x59, 0x1c, 0xc8, 0xd2, 0xdc, - 0xbe, 0x04, 0xd5, 0xe8, 0xba, 0x6c, 0x17, 0x5d, 0x84, 0x31, 0x29, 0x89, 0xf6, 0x03, 0x71, 0xa0, - 0x10, 0x86, 0xc9, 0xf7, 0x30, 0x93, 0xd0, 0x08, 0x01, 0x1f, 0xa1, 0x9e, 0xaf, 0xf7, 0xd0, 0x2a, - 0x1d, 0xef, 0xaf, 0x98, 0x38, 0x94, 0xea, 0x99, 0x8f, 0x7f, 0xfa, 0xf3, 0xb3, 0xf4, 0xa9, 0xaa, - 0x5a, 0xdf, 0x7e, 0xbd, 0xbe, 0x49, 0x8d, 0xf3, 0x3e, 0x66, 0xf5, 0xfb, 0xc2, 0xfc, 0x07, 0xf5, - 0xfb, 0xc4, 0x7a, 0x70, 0x45, 0x39, 0x77, 0x41, 0x59, 0xac, 0x3c, 0xfb, 0xa3, 0x9c, 0xfa, 0x68, - 0xaf, 0xac, 0x3c, 0xd9, 0x2b, 0x2b, 0x4f, 0xf7, 0xca, 0xca, 0xef, 0x7b, 0x65, 0xe5, 0xe1, 0xf3, - 0x72, 0xea, 0xe9, 0xf3, 0x72, 0xea, 0xd9, 0xf3, 0x72, 0xca, 0x18, 0x13, 0x8a, 0x5d, 0xfc, 0x3b, - 0x00, 0x00, 0xff, 0xff, 0x49, 0xb5, 0xc6, 0xa7, 0xad, 0x19, 0x00, 0x00, + // 1663 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcd, 0x6f, 0x1b, 0xc7, + 0x15, 0xe7, 0x92, 0xa2, 0x48, 0x3e, 0x4a, 0x14, 0x35, 0x96, 0xe4, 0x2d, 0x6d, 0xd3, 0x04, 0x0d, + 0x18, 0xaa, 0x0b, 0x93, 0xae, 0x5c, 0x18, 0xae, 0xe1, 0x1a, 0xad, 0x64, 0xaa, 0x14, 0x61, 0xf9, + 0x63, 0x65, 0x9f, 0x7a, 0x20, 0xf6, 0x63, 0x44, 0x8d, 0xb4, 0xdc, 0x59, 0xef, 0xce, 0xaa, 0x52, + 0x0d, 0x03, 0x45, 0x0f, 0xbd, 0xf4, 0x62, 0xa0, 0xe8, 0xa5, 0x09, 0x6c, 0x24, 0x7f, 0x46, 0x80, + 0x00, 0x41, 0x4e, 0x06, 0x72, 0x31, 0x90, 0x8b, 0x73, 0xc8, 0x97, 0x9c, 0xff, 0x23, 0xc1, 0xcc, + 0xec, 0x92, 0xbb, 0x14, 0x65, 0x1f, 0x82, 0x00, 0xb2, 0x90, 0xd3, 0xee, 0xbc, 0x79, 0x6f, 0xe6, + 0xcd, 0xef, 0xcd, 0xfb, 0x1a, 0x38, 0xe5, 0xee, 0xf4, 0x9a, 0xba, 0x4b, 0x9a, 0x78, 0x17, 0x3b, + 0xac, 0xe1, 0x7a, 0x94, 0x51, 0x94, 0xd1, 0x5d, 0x52, 0x39, 0xdf, 0xa3, 0xb4, 0x67, 0xe3, 0xa6, + 0x20, 0x19, 0xc1, 0x66, 0x93, 0x91, 0x3e, 0xf6, 0x99, 0xde, 0x77, 0x25, 0x57, 0x65, 0x20, 0xfa, + 0x38, 0xc0, 0x01, 0x0e, 0x89, 0x67, 0x46, 0xa5, 0x70, 0xdf, 0x65, 0xfb, 0xe1, 0xe4, 0xe5, 0x1e, + 0x61, 0x5b, 0x81, 0xd1, 0x30, 0x69, 0xbf, 0xd9, 0xa3, 0x3d, 0x3a, 0xe4, 0xe2, 0x23, 0x31, 0x10, + 0x7f, 0x21, 0xfb, 0xd9, 0x70, 0x2d, 0xbe, 0x87, 0xee, 0x38, 0x94, 0xe9, 0x8c, 0x50, 0xc7, 0x0f, + 0x67, 0xff, 0xb0, 0x73, 0xdd, 0x6f, 0x10, 0xca, 0x67, 0xfb, 0xba, 0xb9, 0x45, 0x1c, 0xec, 0xed, + 0x37, 0x23, 0x95, 0x3c, 0xec, 0xd3, 0xc0, 0x33, 0x71, 0xb3, 0x87, 0x1d, 0xec, 0xe9, 0x0c, 0x5b, + 0x52, 0xaa, 0xfe, 0x99, 0x02, 0xb3, 0x1d, 0x6a, 0x6c, 0x04, 0x46, 0x9f, 0x30, 0x86, 0xad, 0x16, + 0x3f, 0x36, 0x9a, 0x87, 0xc9, 0x6d, 0x6a, 0x74, 0x89, 0xa5, 0x2a, 0x35, 0x65, 0xb1, 0xa0, 0x65, + 0xb7, 0xa9, 0xb1, 0x66, 0xa1, 0xb3, 0x00, 0x9c, 0xec, 0x63, 0xc6, 0xa7, 0xd2, 0x62, 0x2a, 0xbf, + 0x4d, 0x8d, 0x0d, 0xcc, 0xd6, 0x2c, 0x34, 0x07, 0x59, 0x71, 0x72, 0x35, 0x23, 0x65, 0xc4, 0x00, + 0xdd, 0x82, 0x9c, 0xe9, 0x61, 0xbe, 0xa3, 0x3a, 0x51, 0x53, 0x16, 0x8b, 0x4b, 0x95, 0x86, 0x3c, + 0x46, 0x23, 0x3a, 0x6c, 0xe3, 0x61, 0x04, 0xe4, 0x72, 0xfe, 0xe5, 0x37, 0xe7, 0x53, 0xcf, 0xbe, + 0x3d, 0xaf, 0x68, 0x91, 0x10, 0xaa, 0x41, 0x66, 0x9b, 0x1a, 0x6a, 0x56, 0xc8, 0xe6, 0x1b, 0xba, + 0x4b, 0x1a, 0x1d, 0x6a, 0x2c, 0x4f, 0x70, 0x4e, 0x8d, 0x4f, 0xd5, 0x3f, 0x50, 0xa0, 0xd4, 0xa1, + 0xc6, 0x03, 0xbe, 0xdd, 0xb1, 0xd3, 0xbf, 0xfe, 0x85, 0x02, 0x0b, 0x1d, 0x6a, 0xdc, 0x0e, 0x5c, + 0x9b, 0x98, 0x3a, 0xc3, 0xab, 0x34, 0x70, 0x8e, 0x1f, 0xca, 0x17, 0x61, 0x86, 0x7a, 0xa4, 0x47, + 0x1c, 0xdd, 0xee, 0x86, 0x3a, 0x65, 0xc5, 0xfa, 0xd3, 0x11, 0xb9, 0xc3, 0x75, 0xab, 0x7f, 0x22, + 0xb1, 0xbe, 0x83, 0x75, 0xff, 0x18, 0xde, 0x95, 0x73, 0x00, 0xa6, 0x1d, 0xf8, 0x0c, 0x7b, 0xc3, + 0x03, 0x14, 0x42, 0xca, 0x9a, 0x55, 0xff, 0x4a, 0x81, 0xf9, 0x48, 0x79, 0x0d, 0xb3, 0xc0, 0x73, + 0xde, 0xbb, 0x33, 0xa0, 0x05, 0x98, 0xf4, 0xb0, 0xee, 0x53, 0x47, 0x9d, 0x14, 0x53, 0xe1, 0xa8, + 0xfe, 0x91, 0x02, 0x73, 0xd1, 0xd9, 0x5a, 0x7b, 0x2e, 0xf1, 0x8e, 0xa1, 0x2b, 0xfc, 0xa8, 0xc0, + 0x4c, 0x87, 0x1a, 0xf7, 0xb1, 0x63, 0x11, 0xa7, 0xf7, 0xbe, 0x21, 0x7f, 0x01, 0xa6, 0x77, 0x02, + 0x03, 0x7b, 0x0e, 0x66, 0xd8, 0xe7, 0x1c, 0xd2, 0x00, 0x53, 0x43, 0xe2, 0x9a, 0x58, 0xc3, 0xa5, + 0x56, 0xd7, 0x09, 0xfa, 0x06, 0xf6, 0xd4, 0x5c, 0x4d, 0x59, 0xcc, 0x6a, 0x05, 0x97, 0x5a, 0x77, + 0x05, 0xa1, 0xfe, 0x61, 0x5a, 0x20, 0xa0, 0x05, 0x8e, 0x73, 0x52, 0x11, 0x38, 0x03, 0x05, 0x87, + 0x5a, 0xb8, 0xeb, 0xe8, 0x7d, 0x2c, 0x00, 0x28, 0x68, 0x79, 0x4e, 0xb8, 0xab, 0xf7, 0xf1, 0x08, + 0x3c, 0xf9, 0x51, 0x78, 0x3e, 0xcf, 0xc0, 0x29, 0x1e, 0x67, 0x9c, 0x9e, 0x87, 0x7d, 0x7f, 0xcd, + 0xd9, 0xa4, 0xbf, 0x42, 0x94, 0x84, 0x08, 0xfd, 0x0d, 0x66, 0x89, 0x84, 0xa7, 0xab, 0x5b, 0x16, + 0xff, 0x62, 0x5f, 0x2d, 0xd4, 0x32, 0x8b, 0xc5, 0xa5, 0x46, 0x94, 0x1c, 0x47, 0xf1, 0x6b, 0x84, + 0x84, 0xbf, 0x44, 0x02, 0x2d, 0x87, 0x79, 0xfb, 0x5a, 0x99, 0x8c, 0x90, 0x2b, 0x2b, 0x30, 0x3f, + 0x96, 0x15, 0x95, 0x21, 0xb3, 0x83, 0xf7, 0x05, 0xfa, 0x59, 0x8d, 0xff, 0x72, 0x74, 0x77, 0x75, + 0x3b, 0xc0, 0x21, 0xec, 0x72, 0x70, 0x23, 0x7d, 0x5d, 0xa9, 0x7f, 0x9a, 0x06, 0xb5, 0x43, 0x8d, + 0x47, 0x8e, 0x6e, 0xd8, 0xf8, 0x21, 0xdd, 0x30, 0xb7, 0xb0, 0x15, 0xd8, 0xf8, 0x84, 0x04, 0xda, + 0xc3, 0x16, 0xce, 0xbd, 0xcb, 0xc2, 0xf9, 0xb7, 0x5a, 0xb8, 0x30, 0xea, 0x04, 0x2f, 0x26, 0x44, + 0x8a, 0x5d, 0xd5, 0x89, 0x7d, 0x62, 0xd2, 0x13, 0x6a, 0x01, 0xe0, 0x3d, 0xc2, 0xba, 0x26, 0xb5, + 0xb0, 0xaf, 0xe6, 0xc4, 0x7d, 0xad, 0x47, 0xf7, 0x35, 0x76, 0xd4, 0x46, 0x6b, 0x8f, 0xb0, 0x15, + 0xce, 0x24, 0x2e, 0xde, 0x72, 0x5a, 0x55, 0xb4, 0x02, 0x8e, 0x68, 0x87, 0xc1, 0xcf, 0xbf, 0x0b, + 0xfc, 0xc2, 0x5b, 0xc1, 0x87, 0x51, 0xf7, 0x5a, 0x01, 0x64, 0x52, 0x87, 0xe9, 0xbc, 0x7a, 0xee, + 0xfa, 0x4c, 0x67, 0x01, 0xf7, 0xaf, 0xa2, 0xd0, 0x77, 0x4e, 0xe8, 0xbb, 0x12, 0x4d, 0x6f, 0x88, + 0x59, 0x6d, 0xd6, 0x4c, 0x12, 0xb0, 0x8f, 0x6a, 0x90, 0x35, 0xf5, 0xc0, 0xc7, 0xea, 0x54, 0x4d, + 0x59, 0x2c, 0x2d, 0x81, 0x94, 0xe3, 0x14, 0x4d, 0x4e, 0x54, 0x6e, 0x42, 0x29, 0x79, 0xd0, 0xb8, + 0x87, 0x15, 0xc6, 0x78, 0x58, 0x36, 0xee, 0x61, 0xcf, 0xd3, 0x61, 0xcd, 0x6e, 0x9a, 0x18, 0x5b, + 0xef, 0xdf, 0x25, 0xf9, 0xc5, 0xf3, 0xc8, 0x7f, 0x26, 0x44, 0x1e, 0x79, 0xc4, 0x88, 0x4d, 0x7c, + 0xd1, 0x24, 0x9d, 0x48, 0x88, 0x28, 0xcc, 0xaf, 0xeb, 0x7b, 0x5a, 0xd8, 0xda, 0xf9, 0xab, 0xd4, + 0xbb, 0x8f, 0x3d, 0x42, 0xad, 0xd0, 0xbf, 0xae, 0x46, 0xfe, 0x35, 0x8a, 0x43, 0x63, 0xac, 0x94, + 0x74, 0x38, 0xd9, 0x57, 0x8d, 0x5f, 0xf7, 0xe7, 0x84, 0xb5, 0xca, 0x1e, 0x54, 0x8e, 0xde, 0x76, + 0xcc, 0xf5, 0xbf, 0x1d, 0xbf, 0xfe, 0x3c, 0xb9, 0xc9, 0xf6, 0xb6, 0x11, 0x6f, 0x6f, 0x1b, 0xee, + 0x4e, 0x4f, 0x1c, 0x32, 0x6a, 0x6f, 0x1b, 0x0f, 0x02, 0xdd, 0x61, 0x84, 0xed, 0xc7, 0xdd, 0xe5, + 0x63, 0x59, 0xf6, 0x6b, 0xd8, 0xf5, 0x08, 0xf5, 0x08, 0x23, 0xff, 0x38, 0x86, 0xb5, 0xf1, 0x0b, + 0x05, 0x50, 0x87, 0x1a, 0x2b, 0xba, 0x63, 0x62, 0xdb, 0x3e, 0x86, 0xc5, 0x61, 0xfd, 0xb9, 0x7c, + 0x29, 0x08, 0x35, 0x3c, 0x86, 0x10, 0xfe, 0x3f, 0x2d, 0x20, 0x7c, 0x88, 0xbd, 0x3e, 0x71, 0x74, + 0x76, 0x42, 0xe3, 0xe2, 0xdb, 0x3b, 0x8c, 0x58, 0x02, 0xce, 0x27, 0xfa, 0xc3, 0x7f, 0xe7, 0x61, + 0x4a, 0xe0, 0xb1, 0x8e, 0x7d, 0x5f, 0xef, 0x61, 0x74, 0x0d, 0x0a, 0x7e, 0xf4, 0xe8, 0x23, 0x90, + 0x29, 0x2e, 0x2d, 0x44, 0x01, 0x23, 0xf9, 0x1a, 0xd4, 0x4e, 0x69, 0x43, 0x56, 0x74, 0x19, 0x26, + 0x05, 0x18, 0x56, 0xe8, 0x98, 0xa7, 0x22, 0xa1, 0xd8, 0xfb, 0x4b, 0x3b, 0xa5, 0x85, 0x4c, 0x68, + 0x15, 0x66, 0xac, 0xe8, 0xe9, 0xa3, 0xbb, 0x49, 0x03, 0xc7, 0x52, 0xcb, 0x42, 0xee, 0x4c, 0x24, + 0x37, 0xe6, 0x65, 0xa4, 0x9d, 0xd2, 0x4a, 0x56, 0x82, 0xcc, 0xb7, 0xb5, 0xc5, 0xa3, 0x83, 0xb0, + 0x48, 0x6c, 0xdb, 0xd8, 0x53, 0x04, 0xdf, 0x56, 0x32, 0xa1, 0x15, 0x28, 0x89, 0xbf, 0xae, 0x17, + 0xf6, 0xf9, 0x03, 0x83, 0xc5, 0xc5, 0x12, 0x8f, 0x00, 0xed, 0x94, 0x36, 0x6d, 0xc7, 0xa9, 0xe8, + 0xcf, 0x20, 0x09, 0x5d, 0x2c, 0x1b, 0xea, 0xf0, 0x11, 0xea, 0x37, 0x89, 0x35, 0xe2, 0xcd, 0x76, + 0x3b, 0xa5, 0x4d, 0xd9, 0x31, 0x22, 0xba, 0x02, 0x39, 0x57, 0x76, 0xbb, 0xc2, 0x96, 0x51, 0x0d, + 0x31, 0xd2, 0x04, 0xb7, 0x53, 0x5a, 0xc4, 0xc6, 0x25, 0x3c, 0xd9, 0x1d, 0x0a, 0xdb, 0xc6, 0x24, + 0xe2, 0x4d, 0x23, 0x97, 0x08, 0xd9, 0xd0, 0x3a, 0xa0, 0x40, 0xd4, 0xda, 0x5d, 0x46, 0xbb, 0x7e, + 0x58, 0x6d, 0x0b, 0xeb, 0x17, 0x97, 0xce, 0x0d, 0x52, 0xc0, 0xb8, 0x6a, 0xbc, 0x9d, 0xd2, 0xca, + 0xc1, 0xc8, 0x04, 0x07, 0x7a, 0x53, 0xd4, 0x63, 0x22, 0x84, 0xc7, 0x80, 0x8e, 0x55, 0x69, 0x1c, + 0x68, 0xc9, 0x24, 0xaf, 0x51, 0x58, 0x87, 0x88, 0x72, 0x2a, 0x71, 0x8d, 0xe2, 0x05, 0x8a, 0xbc, + 0x46, 0x21, 0x05, 0x2d, 0xc3, 0xb4, 0x17, 0x0f, 0xc8, 0x6a, 0x31, 0x69, 0x9f, 0xc3, 0xd1, 0x9a, + 0xdb, 0x27, 0x21, 0x82, 0xfe, 0x08, 0x60, 0x0e, 0xe2, 0xa5, 0x28, 0xb6, 0x8a, 0x4b, 0xa7, 0xa3, + 0x05, 0x46, 0x22, 0x69, 0x3b, 0xa5, 0xc5, 0x98, 0xb9, 0xda, 0x66, 0x14, 0xc8, 0xd4, 0xe9, 0xa4, + 0xda, 0xc9, 0x08, 0xc7, 0xd5, 0x1e, 0xb0, 0xf2, 0x2d, 0xd9, 0x20, 0xbe, 0xa8, 0xa5, 0xe4, 0x96, + 0x23, 0x91, 0x87, 0x6f, 0x39, 0x64, 0x46, 0x37, 0xa1, 0x18, 0x0c, 0x13, 0xb1, 0x3a, 0x23, 0x64, + 0xd5, 0xa3, 0x72, 0x74, 0x3b, 0xa5, 0xc5, 0xd9, 0xd1, 0x9f, 0x60, 0x2a, 0xea, 0xfb, 0x88, 0xb3, + 0x49, 0xd5, 0xd9, 0xa4, 0xf8, 0x68, 0xcb, 0xc7, 0xc5, 0xc9, 0x90, 0xb6, 0x9c, 0x87, 0x49, 0xf1, + 0xa0, 0xed, 0xd7, 0xff, 0xa7, 0xc0, 0xcc, 0x48, 0x0d, 0x8b, 0x10, 0x4c, 0x88, 0x94, 0x2e, 0x03, + 0xa4, 0xf8, 0x47, 0x15, 0xc8, 0x47, 0x75, 0x77, 0x58, 0x81, 0x0e, 0xc6, 0x48, 0x85, 0x5c, 0x5f, + 0x86, 0x91, 0x30, 0x3e, 0x46, 0xc3, 0x58, 0xf8, 0x99, 0x48, 0xd4, 0xff, 0x83, 0x92, 0x38, 0x7b, + 0x44, 0x49, 0x5c, 0xbf, 0x06, 0x05, 0xa1, 0xf9, 0x1d, 0xe2, 0x33, 0xf4, 0xdb, 0x48, 0x5d, 0x55, + 0x11, 0xa5, 0xcc, 0xac, 0xe0, 0x8f, 0xc7, 0x2f, 0x2d, 0x3a, 0xcf, 0x03, 0x40, 0x82, 0xbe, 0xc1, + 0x3c, 0xac, 0xf7, 0xa3, 0xe8, 0x56, 0x82, 0xf4, 0x20, 0xe0, 0xa7, 0x89, 0x85, 0x7e, 0x37, 0xd4, + 0x58, 0x86, 0xad, 0x31, 0x2b, 0x46, 0x1c, 0x75, 0x1f, 0xa6, 0x3b, 0x22, 0x11, 0x68, 0xf8, 0x71, + 0x80, 0x7d, 0x76, 0x68, 0xb5, 0x39, 0xc8, 0xfe, 0x5d, 0x67, 0xe6, 0x96, 0x58, 0x2b, 0xaf, 0xc9, + 0x01, 0xba, 0x08, 0x33, 0x9b, 0x1e, 0xed, 0x77, 0xc3, 0x65, 0x78, 0x00, 0x97, 0xe8, 0x4c, 0x73, + 0x72, 0xb8, 0x4b, 0x3c, 0xb7, 0x4c, 0xc4, 0x72, 0xcb, 0xa5, 0x5b, 0x90, 0x15, 0x78, 0xa0, 0x02, + 0x64, 0x5b, 0x9e, 0x47, 0xbd, 0x72, 0x0a, 0x15, 0x21, 0xd7, 0xda, 0x25, 0x26, 0xc3, 0x56, 0x59, + 0x41, 0x39, 0xc8, 0xdc, 0xbb, 0xb7, 0x5e, 0x4e, 0xa3, 0x39, 0x28, 0xdf, 0xc6, 0xba, 0x65, 0x13, + 0x07, 0xb7, 0xf6, 0xa4, 0x3b, 0x95, 0x33, 0x4b, 0x5f, 0x2b, 0x90, 0x95, 0x09, 0xef, 0x3a, 0x94, + 0x34, 0xec, 0x52, 0x8f, 0xad, 0x07, 0x36, 0x23, 0xae, 0x8d, 0x51, 0x69, 0x78, 0x58, 0x0e, 0x6f, + 0x65, 0xe1, 0x50, 0xda, 0x6a, 0xf5, 0x5d, 0xb6, 0x8f, 0xae, 0xc2, 0xa4, 0x94, 0x44, 0x87, 0xe1, + 0x39, 0x52, 0x08, 0xc3, 0xcc, 0x5f, 0x31, 0x93, 0x80, 0x09, 0x01, 0x1f, 0xa1, 0x41, 0x04, 0x18, + 0x60, 0x58, 0x39, 0x3d, 0x5c, 0x31, 0x61, 0xaa, 0xfa, 0x85, 0x7f, 0x7d, 0xf9, 0xc3, 0x7f, 0xd3, + 0xe7, 0xea, 0x6a, 0x73, 0xf7, 0xf7, 0xcd, 0x6d, 0x6a, 0x5c, 0xf6, 0x31, 0x6b, 0x3e, 0x11, 0xa0, + 0x3c, 0x6d, 0x3e, 0x21, 0xd6, 0xd3, 0x1b, 0xca, 0xa5, 0x2b, 0xca, 0x72, 0xed, 0xf5, 0xf7, 0xd5, + 0xd4, 0x3f, 0x0f, 0xaa, 0xca, 0xcb, 0x83, 0xaa, 0xf2, 0xea, 0xa0, 0xaa, 0x7c, 0x77, 0x50, 0x55, + 0x9e, 0xbd, 0xa9, 0xa6, 0x5e, 0xbd, 0xa9, 0xa6, 0x5e, 0xbf, 0xa9, 0xa6, 0x8c, 0x49, 0xa1, 0xd8, + 0xd5, 0x9f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x24, 0x43, 0xe7, 0xf4, 0xc3, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/pkg/api/event.proto b/pkg/api/event.proto index fdb56faab04..028cedfab1d 100644 --- a/pkg/api/event.proto +++ b/pkg/api/event.proto @@ -200,6 +200,7 @@ enum Cause { Error = 0; Evicted = 1; OOM = 2; + DeadlineExceeded = 3; } message ContainerStatus {