Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for jsonToYAML (0.09 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		Spec:       V1DeepEqualSafePodSpec(),
    		Status:     V1DeepEqualSafePodStatus(),
    	}
    }
    
    func JSONToYAMLOrDie(in []byte) []byte {
    	data, err := yaml.JSONToYAML(in)
    	if err != nil {
    		panic(err)
    	}
    	return data
    }
    
    func streamYAMLTestData() (io.Reader, *v1.PodList, *v1.ServiceList) {
    	pods, svc := testData()
    	r, w := io.Pipe()
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top