Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Tresults (0.31 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    func convertVirtualService(r configContext) []config.Config {
    	result := []config.Config{}
    	for _, obj := range r.TCPRoute {
    		result = append(result, buildTCPVirtualService(r, obj)...)
    	}
    
    	for _, obj := range r.TLSRoute {
    		result = append(result, buildTLSVirtualService(r, obj)...)
    	}
    
    	// for gateway routes, build one VS per gateway+host
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Namespace: "new",
    		},
    		Spec: v1.PodSpec{
    			Containers: containers,
    		},
    	}
    
    	backOff := flowcontrol.NewBackOff(time.Second, time.Minute)
    	result := m.SyncPod(context.Background(), pod, &kubecontainer.PodStatus{}, []v1.Secret{}, backOff)
    	assert.NoError(t, result.Error())
    	assert.Equal(t, 2, len(fakeRuntime.Containers))
    	assert.Equal(t, 2, len(fakeImage.Images))
    	assert.Equal(t, 1, len(fakeRuntime.Sandboxes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top