Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for convertResources (0.15 sec)

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

    				Services:  services,
    				Instances: instances,
    			})
    			kr := splitInput(t, input)
    			kr.Context = NewGatewayContext(cg.PushContext(), "Kubernetes")
    			output := convertResources(kr)
    			output.AllowedReferences = AllowedReferences{} // Not tested here
    			output.ReferencedNamespaceKeys = nil           // Not tested here
    			output.ResourceReferences = nil                // Not tested here
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top