Skip to content

Commit daaad09

Browse files
Merge pull request #128501 from benluddy/watch-cbor-seq
KEP-4222: Use cbor-seq content-type for CBOR watch responses. Kubernetes-commit: a885e446d6f6f5530da4923a3872eb27ca47bdc0
2 parents d70754f + 8019856 commit daaad09

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pkg/runtime/types.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ type TypeMeta struct {
4343
}
4444

4545
const (
46-
ContentTypeJSON string = "application/json"
47-
ContentTypeYAML string = "application/yaml"
48-
ContentTypeProtobuf string = "application/vnd.kubernetes.protobuf"
49-
ContentTypeCBOR string = "application/cbor"
46+
ContentTypeJSON string = "application/json"
47+
ContentTypeYAML string = "application/yaml"
48+
ContentTypeProtobuf string = "application/vnd.kubernetes.protobuf"
49+
ContentTypeCBOR string = "application/cbor" // RFC 8949
50+
ContentTypeCBORSequence string = "application/cbor-seq" // RFC 8742
5051
)
5152

5253
// RawExtension is used to hold extensions in external versions.

0 commit comments

Comments
 (0)