PR | Porges: Quantity doc fixes |
Result | FAILURE |
Tests | 4 failed / 39 succeeded |
Started | |
Elapsed | 41m45s |
Revision | 30a6f90381b7801fbc0b939e0c4b0f44da4a7309 |
Refs |
110023 |
make verify WHAT=generated-files
Unexpected dirty working directory: diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index a2dc407f3c1..d161a51fd95 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -43721,7 +43721,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) return common.EmbedOpenAPIDefinitionIntoV2Extension(common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", OneOf: common.GenerateOpenAPIV3OneOfSchema(resource.Quantity{}.OpenAPIV3OneOfTypes()), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, @@ -43729,7 +43729,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) }, common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", Type: resource.Quantity{}.OpenAPISchemaType(), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, !!! [0514 12:18:02] Call tree: !!! [0514 12:18:02] 1: hack/make-rules/../../hack/verify-generated-files.sh:29 kube::util::ensure_clean_working_dir(...)from junit_verify.xml
Unexpected dirty working directory: diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index a2dc407f3c1..d161a51fd95 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -43721,7 +43721,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) return common.EmbedOpenAPIDefinitionIntoV2Extension(common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", OneOf: common.GenerateOpenAPIV3OneOfSchema(resource.Quantity{}.OpenAPIV3OneOfTypes()), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, @@ -43729,7 +43729,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) }, common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", Type: resource.Quantity{}.OpenAPISchemaType(), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, !!! [0514 12:18:02] Call tree: !!! [0514 12:18:02] 1: hack/make-rules/../../hack/verify-generated-files.sh:29 kube::util::ensure_clean_working_dir(...)
Filter through log files | View test history on testgrid
make verify WHAT=generated-protobuf
2022/05/14 12:18:50 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admission/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admission/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:53 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:55 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:56 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:56 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:57 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:57 k8s.io/kubernetes/vendor/k8s.io/api/batch/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/batch/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/batch/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/batch/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:59 k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:59 k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:00 k8s.io/kubernetes/vendor/k8s.io/api/core/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:02 k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:02 k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:03 k8s.io/kubernetes/vendor/k8s.io/api/events/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/events/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:03 k8s.io/kubernetes/vendor/k8s.io/api/events/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/events/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/extensions/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/extensions/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/networking/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/networking/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:06 k8s.io/kubernetes/vendor/k8s.io/api/networking/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/networking/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:06 k8s.io/kubernetes/vendor/k8s.io/api/node/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/node/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/node/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/policy/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/policy/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/policy/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/policy/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:10 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:10 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:11 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:11 k8s.io/kubernetes/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/external_metrics/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/external_metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:14 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:14 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused.from junit_verify.xml
2022/05/14 12:18:50 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admission/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admission/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:51 k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/admissionregistration/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/apiserverinternal/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:52 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:53 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/apps/v1beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authentication/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:54 k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/authorization/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:55 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:56 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:56 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:57 k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/autoscaling/v2beta2/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:57 k8s.io/kubernetes/vendor/k8s.io/api/batch/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/batch/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/batch/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/batch/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:58 k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/certificates/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:18:59 k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:18:59 k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/coordination/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:00 k8s.io/kubernetes/vendor/k8s.io/api/core/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:02 k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:02 k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/discovery/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:03 k8s.io/kubernetes/vendor/k8s.io/api/events/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/events/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:03 k8s.io/kubernetes/vendor/k8s.io/api/events/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/events/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/extensions/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/extensions/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:04 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/flowcontrol/v1beta2/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/imagepolicy/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:05 k8s.io/kubernetes/vendor/k8s.io/api/networking/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/networking/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:06 k8s.io/kubernetes/vendor/k8s.io/api/networking/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/networking/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:06 k8s.io/kubernetes/vendor/k8s.io/api/node/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/node/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/node/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/node/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:07 k8s.io/kubernetes/vendor/k8s.io/api/policy/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/policy/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/policy/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/policy/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1alpha1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:08 k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/rbac/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1alpha1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:09 k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/scheduling/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:10 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:10 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:11 k8s.io/kubernetes/vendor/k8s.io/api/storage/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/api/storage/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:11 k8s.io/kubernetes/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/apiserver/pkg/apis/example/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:12 k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1/generated.proto:26:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta2/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/custom_metrics/v1beta2/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:13 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/external_metrics/v1beta1/generated.proto:27:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/external_metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. 2022/05/14 12:19:14 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1alpha1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused. 2022/05/14 12:19:14 k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:28:1: warning: Import k8s.io/apimachinery/pkg/runtime/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:29:1: warning: Import k8s.io/apimachinery/pkg/runtime/schema/generated.proto is unused. k8s.io/kubernetes/vendor/k8s.io/metrics/pkg/apis/metrics/v1beta1/generated.proto:25:1: warning: Import k8s.io/api/core/v1/generated.proto is unused.
Filter through log files | View test history on testgrid
make verify WHAT=internal-modules
Unexpected dirty working directory: diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index a2dc407f3c1..d161a51fd95 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -43721,7 +43721,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) return common.EmbedOpenAPIDefinitionIntoV2Extension(common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", OneOf: common.GenerateOpenAPIV3OneOfSchema(resource.Quantity{}.OpenAPIV3OneOfTypes()), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, @@ -43729,7 +43729,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) }, common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", Type: resource.Quantity{}.OpenAPISchemaType(), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, !!! [0514 12:39:54] Call tree: !!! [0514 12:39:54] 1: hack/make-rules/../../hack/verify-internal-modules.sh:24 kube::util::ensure_clean_working_dir(...)from junit_verify.xml
Unexpected dirty working directory: diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go index a2dc407f3c1..d161a51fd95 100644 --- a/pkg/generated/openapi/zz_generated.openapi.go +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -43721,7 +43721,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) return common.EmbedOpenAPIDefinitionIntoV2Extension(common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", OneOf: common.GenerateOpenAPIV3OneOfSchema(resource.Quantity{}.OpenAPIV3OneOfTypes()), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, @@ -43729,7 +43729,7 @@ func schema_apimachinery_pkg_api_resource_Quantity(ref common.ReferenceCallback) }, common.OpenAPIDefinition{ Schema: spec.Schema{ SchemaProps: spec.SchemaProps{ - Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedNumber> | \"E\" <signedNumber> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", + Description: "Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and AsInt64() accessors.\n\nThe serialization format is:\n\n``` <quantity> ::= <signedNumber><suffix>\n (Note that <suffix> may be empty, from the \"\" case in <decimalSI>.)\n<digit> ::= 0 | 1 | ... | 9 <digits> ::= <digit> | <digit><digits> <number> ::= <digits> | <digits>.<digits> | <digits>. | .<digits> <sign> ::= \"+\" | \"-\" <signedNumber> ::= <number> | <sign><number> <signedInteger> ::= <digits> | <sign><digits> <suffix> ::= <binarySI> | <decimalExponent> | <decimalSI> <binarySI> ::= Ki | Mi | Gi | Ti | Pi | Ei\n (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)\n<decimalSI> ::= n | u | m | \"\" | k | M | G | T | P | E\n (Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)\n<decimalExponent> ::= \"e\" <signedInteger> | \"E\" <signedInteger> ```\n\nNo matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.\n\nWhen a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.\n\nBefore serializing, Quantity will be put in \"canonical form\". This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:\n\n- No precision is lost - No fractional digits will be emitted - The exponent (or suffix) is as large as possible.\n\nThe sign will be omitted unless the number is negative.\n\nExamples:\n\n- 1.5 will be serialized as \"1500m\" - 1.5Gi will be serialized as \"1536Mi\"\n\nNote that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.\n\nNon-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don't diff.)\n\nThis format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation.", Type: resource.Quantity{}.OpenAPISchemaType(), Format: resource.Quantity{}.OpenAPISchemaFormat(), }, !!! [0514 12:39:54] Call tree: !!! [0514 12:39:54] 1: hack/make-rules/../../hack/verify-internal-modules.sh:24 kube::util::ensure_clean_working_dir(...)
Filter through log files | View test history on testgrid
make verify WHAT=mocks
pkg/kubelet/status/status_manager.go pkg/kubelet/pod/pod_manager.go go: downloading github.com/opencontainers/selinux v1.10.0 pkg/kubelet/cadvisor/types.go pkg/kubelet/eviction/types.go pkg/kubelet/server/stats/summary.go pkg/kubelet/server/stats/handler.go pkg/kubelet/apis/podresources/types.go pkg/kubelet/container/runtime.go pkg/kubelet/container/runtime_cache.go test/e2e/storage/drivers/csi-test/driver/driver.go go: downloading github.com/container-storage-interface/spec v1.5.0 staging/src/k8s.io/legacy-cloud-providers/azure/clients/containerserviceclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/securitygroupclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/routetableclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/loadbalancerclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/storageaccountclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmssclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/interfaceclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/armclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/deploymentclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/subnetclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/routeclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmssvmclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/diskclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmsizeclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/snapshotclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/publicipclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/azure_vmsets.go Mock files are out of date. Please run hack/update-mocks.shfrom junit_verify.xml
pkg/kubelet/status/status_manager.go pkg/kubelet/pod/pod_manager.go go: downloading github.com/opencontainers/selinux v1.10.0 pkg/kubelet/cadvisor/types.go pkg/kubelet/eviction/types.go pkg/kubelet/server/stats/summary.go pkg/kubelet/server/stats/handler.go pkg/kubelet/apis/podresources/types.go pkg/kubelet/container/runtime.go pkg/kubelet/container/runtime_cache.go test/e2e/storage/drivers/csi-test/driver/driver.go go: downloading github.com/container-storage-interface/spec v1.5.0 staging/src/k8s.io/legacy-cloud-providers/azure/clients/containerserviceclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/securitygroupclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/routetableclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/loadbalancerclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/storageaccountclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmssclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/interfaceclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/armclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/deploymentclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/subnetclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/routeclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmssvmclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/diskclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/vmsizeclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/snapshotclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/clients/publicipclient/interface.go staging/src/k8s.io/legacy-cloud-providers/azure/azure_vmsets.go Mock files are out of date. Please run hack/update-mocks.sh
Filter through log files | View test history on testgrid
verify api-groups
verify boilerplate
verify cli-conventions
verify codegen
verify conformance-requirements
verify conformance-yaml
verify description
verify e2e-test-ownership
verify flags-underscore
verify generated-device-plugin
verify generated-docs
verify generated-kms
verify generated-kubelet-plugin-registration
verify generated-pod-resources
verify generated-runtime
verify generated-stable-metrics
verify generated-swagger-docs
verify gofmt
verify golangci-lint
verify govet
verify import-aliases
verify import-boss
verify imports
verify netparse-cve
verify no-vendor-cycles
verify non-mutating-validation
verify openapi-spec
verify pkg-names
verify prerelease-lifecycle-tags
verify prometheus-imports
verify publishing-bot
verify readonly-packages
verify shellcheck
verify spelling
verify staging-meta-files
verify test-code
verify test-featuregates
verify test-images
verify yamlfmt