Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 490 for wsaioctl (0.16 sec)

  1. 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)
  2. releasenotes/notes/38885.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
      **Fixed** behavior for `istioctl create-remote-secret` on Kubernetes 1.24+. In these versions,
      a Secret containing a ServiceAccount API token is no longer automatically created, so istioctl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 18 03:01:41 UTC 2022
    - 421 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. istioctl/cmd/sysexits.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cmd
    
    import (
    	"strings"
    
    	"istio.io/istio/istioctl/pkg/analyze"
    	"istio.io/istio/istioctl/pkg/util"
    )
    
    // Values should try to use sendmail-style values as in <sysexits.h>
    // See e.g. https://man.openbsd.org/sysexits.3
    // or `less /usr/includes/sysexits.h` if you're on Linux
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.9K 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. releasenotes/notes/istioctl_completion.yaml

    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: istioctl
    
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 06:15:33 UTC 2021
    - 998 bytes
    - Viewed (0)
  10. 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)
Back to top