go.mod: update kubernetes to v1.22.0
This brings in some cri api changes for cgroups, Windows pod sandbox security context changes and some new fields for the Windows version of a privileged container. This also unfortunately bumps the prometheus client, grpc middleware, bolt and klog :( Signed-off-by: Daniel Canter <dcanter@microsoft.com>
This commit is contained in:
		
							
								
								
									
										2
									
								
								vendor/github.com/json-iterator/go/reflect.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								vendor/github.com/json-iterator/go/reflect.go
									
									
									
										generated
									
									
										vendored
									
									
								
							| @@ -65,7 +65,7 @@ func (iter *Iterator) ReadVal(obj interface{}) { | ||||
| 	decoder := iter.cfg.getDecoderFromCache(cacheKey) | ||||
| 	if decoder == nil { | ||||
| 		typ := reflect2.TypeOf(obj) | ||||
| 		if typ.Kind() != reflect.Ptr { | ||||
| 		if typ == nil || typ.Kind() != reflect.Ptr { | ||||
| 			iter.ReportError("ReadVal", "can only unmarshal into pointer") | ||||
| 			return | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Daniel Canter
					Daniel Canter