Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for wsaioctl (0.14 sec)

  1. pkg/test/framework/components/istioctl/kube.go

    //  limitations under the License.
    
    package istioctl
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    	"sync"
    	"time"
    
    	"istio.io/istio/istioctl/cmd"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // We cannot invoke the istioctl library concurrently due to the number of global variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. operator/README.md

    # show differences between the default and demo profiles
    istioctl profile dump default > 1.yaml
    istioctl profile dump demo > 2.yaml
    istioctl profile diff 1.yaml 2.yaml
    
    # show the differences in the generated manifests between the default profile and a customized install
    istioctl manifest generate > 1.yaml
    istioctl manifest generate -f samples/pilot-k8s.yaml > 2.yaml
    istioctl manifest diff 1.yam1 2.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. 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)
  4. operator/cmd/mesh/profile.go

    	"istio.io/istio/istioctl/pkg/cli"
    )
    
    // ProfileCmd is a group of commands related to profile listing, dumping and diffing.
    func ProfileCmd(_ cli.Context) *cobra.Command {
    	pc := &cobra.Command{
    		Use:   "profile",
    		Short: "Commands related to Istio configuration profiles",
    		Long:  "The profile command lists, dumps or diffs Istio configuration profiles.",
    		Example: "istioctl profile list\n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tests/integration/operator/uninstall_test.go

    				istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    				workDir, err := t.CreateTmpDirectory("operator-controller-test")
    				if err != nil {
    					t.Fatal("failed to create test directory")
    				}
    				cs := t.Clusters().Default()
    				cleanupInClusterCRs(t, cs)
    				t.Cleanup(func() {
    					cleanupIstioResources(t, cs, istioCtl)
    				})
    				s := t.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. releasenotes/notes/50347.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 49841
    releaseNotes:
    - |
      **Added** Add ztunnel-config istioctl command. Allow users to view Ztunnel configuration information through istioctl via ztunnel-config workload flag. 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 390 bytes
    - Viewed (0)
  7. istioctl/pkg/authz/authz.go

    package authz
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"os"
    
    	"github.com/spf13/cobra"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/configdump"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    )
    
    var configDumpFile string
    
    func checkCmd(ctx cli.Context) *cobra.Command {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. istioctl/pkg/internaldebug/internal-debug_test.go

    	"k8s.io/client-go/rest/fake"
    	cmdtesting "k8s.io/kubectl/pkg/cmd/testing"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    
    	"istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/istioctl/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    type execTestCase struct {
    	args     []string
    	revision string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. istioctl/pkg/version/version.go

    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    	"google.golang.org/protobuf/types/known/structpb"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/operator/cmd/mesh"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/proxy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. releasenotes/notes/49443.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 15:24:34 UTC 2024
    - 168 bytes
    - Viewed (0)
Back to top