Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for gwSpecs (0.16 sec)

  1. operator/pkg/translate/translate_value.go

    		if err != nil {
    			return err
    		}
    		if !pathExist && !enabled {
    			continue
    		}
    		gwSpecs := make([]map[string]any, 1)
    		gwSpec := make(map[string]any)
    		gwSpecs[0] = gwSpec
    		gwSpec["enabled"] = enabled
    		gwSpec["name"] = util.ToYAMLPath(inPath)[1]
    		outCP := util.ToYAMLPath("Components." + string(outPath))
    
    		if enabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/controller_test.go

    			},
    		},
    	}
    	httpRouteSpec = &k8s.HTTPRouteSpec{
    		CommonRouteSpec: k8s.CommonRouteSpec{ParentRefs: []k8s.ParentReference{{
    			Name: "gwspec",
    		}}},
    		Hostnames: []k8s.Hostname{"test.cluster.local"},
    	}
    
    	expectedgw = &networking.Gateway{
    		Servers: []*networking.Server{
    			{
    				Port: &networking.Port{
    					Number:   9009,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate.go

    		return nil, err
    	}
    	gwSpec := componentSpec.(*v1alpha1.GatewaySpec)
    	k8s := gwSpec.K8S
    	switch componentName {
    	case name.IngressComponentName:
    		setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-ingressgateway.name"), gwSpec.Name)
    		if len(gwSpec.Label) != 0 {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-ingressgateway.labels"), gwSpec.Label)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top