Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for wsaioctl (0.23 sec)

  1. istioctl/cmd/root.go

    	"istio.io/istio/istioctl/pkg/kubeinject"
    	"istio.io/istio/istioctl/pkg/metrics"
    	"istio.io/istio/istioctl/pkg/multicluster"
    	"istio.io/istio/istioctl/pkg/precheck"
    	"istio.io/istio/istioctl/pkg/proxyconfig"
    	"istio.io/istio/istioctl/pkg/proxystatus"
    	"istio.io/istio/istioctl/pkg/root"
    	"istio.io/istio/istioctl/pkg/tag"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/validate"
    	"istio.io/istio/istioctl/pkg/version"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. tests/integration/ambient/waypoint_test.go

    					constants.DataplaneModeLabel: "ambient",
    				},
    			})
    
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"apply",
    				"--namespace",
    				nsConfig.Name(),
    				"--wait",
    			})
    
    			nameSet := []string{"", "w1", "w2"}
    			for _, name := range nameSet {
    				istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    					"waypoint",
    					"apply",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubectl/pkg/util/podutils"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	ambientutil "istio.io/istio/istioctl/pkg/util/ambient"
    	ztunnelDump "istio.io/istio/istioctl/pkg/writer/ztunnel/configdump"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

      istioctl waypoint delete
    
      # Delete a waypoint by name, which can obtain from istioctl waypoint list
      istioctl waypoint delete waypoint-name --namespace default
    
      # Delete several waypoints by name
      istioctl waypoint delete waypoint-name1 waypoint-name2 --namespace default
    
      # Delete all waypoints in a specific namespace
      istioctl waypoint delete --all --namespace default`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/ambient/waypoint.go

    	server := &kubeComponent{
    		ns: ns,
    	}
    	server.id = ctx.TrackResource(server)
    	if err := crd.DeployGatewayAPI(ctx); err != nil {
    		return nil, err
    	}
    
    	// TODO support multicluster
    	ik, err := istioctl.New(ctx, istioctl.Config{})
    	if err != nil {
    		return nil, err
    	}
    	// TODO: detect from UseWaypointProxy in echo.Config
    	_, _, err = ik.Invoke([]string{
    		"waypoint",
    		"apply",
    		"--namespace",
    		ns.Name(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pkg/test/framework/config.go

    	var outErr error
    	for _, c := range c.ctx.Clusters() {
    		ik, err := istioctl.New(ctx, istioctl.Config{Cluster: c})
    		if err != nil {
    			return err
    		}
    
    		for _, cfg := range yamlText {
    			cfg := cfg
    
    			// TODO(https://github.com/istio/istio/issues/37324): It's currently unsafe
    			// to call istioctl concurrently since it relies on the istioctl library
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. releasenotes/notes/51568.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl  
    issue:
    - 51567
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 194 bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/kube.go

    			}
    		}
    	}
    	return nil
    }
    
    func (i *istioImpl) CreateRemoteSecret(ctx resource.Context, c cluster.Cluster, opts ...string) (string, error) {
    	istioCtl, err := istioctl.New(ctx, istioctl.Config{
    		Cluster: c,
    	})
    	if err != nil {
    		return "", err
    	}
    	istioctlCmd := []string{
    		"create-remote-secret",
    		"--name", c.Name(),
    		"--namespace", i.cfg.SystemNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/cleanup.go

    			err = multierror.Append(err, e)
    		}
    		// Delete validating and mutating webhook configurations. These can be created outside of generated manifests
    		// when installing with istioctl and must be deleted separately.
    		if e := c.Kube().AdmissionregistrationV1().ValidatingWebhookConfigurations().DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/test/kube/dump.go

    		if strings.Contains(k, "test-vm") {
    			return true
    		}
    	}
    	return false
    }
    
    func DumpDebug(ctx resource.Context, c cluster.Cluster, workDir, endpoint, namespace string) {
    	ik, err := istioctl.New(ctx, istioctl.Config{Cluster: c})
    	if err != nil {
    		scopes.Framework.Warnf("failed dumping %s (cluster %s): %v", endpoint, c.Name(), err)
    		return
    	}
    	args := []string{"x", "internal-debug", "--all", endpoint}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top