Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. istioctl/pkg/waypoint/waypoint.go

    				}
    			}
    			gw, err := makeGateway(true)
    			if err != nil {
    				return fmt.Errorf("failed to create gateway: %v", err)
    			}
    			gwc := kubeClient.GatewayAPI().GatewayV1().Gateways(ctx.NamespaceOrDefault(ctx.Namespace()))
    			b, err := yaml.Marshal(gw)
    			if err != nil {
    				return err
    			}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    	"k8s.io/apimachinery/pkg/runtime"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubectl/pkg/polymorphichelpers"
    	"k8s.io/kubectl/pkg/util/podutils"
    	gatewayapi "sigs.k8s.io/gateway-api/apis/v1"
    	gatewayapibeta "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    	"istio.io/istio/pkg/config/constants"
    	kubelib "istio.io/istio/pkg/kube"
    )
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 06 15:01:41 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. istioctl/pkg/waypoint/waypoint_test.go

    				Namespace: "default",
    			})
    			client, err := ctx.CLIClient()
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			for _, gw := range tt.gateways {
    				_, _ = client.GatewayAPI().GatewayV1().Gateways(gw.Namespace).Create(context.Background(), gw, metav1.CreateOptions{})
    			}
    			defaultFile, err := os.ReadFile(fmt.Sprintf("testdata/waypoint/%s", tt.expectedOutFile))
    			if err != nil {
    				t.Fatal(err)
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 04 15:53:09 GMT 2024
    - 4.4K bytes
    - Viewed (0)
Back to top