Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 242 for wsaioctl (0.19 sec)

  1. releasenotes/notes/47705.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 47696
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 02 18:10:52 UTC 2023
    - 177 bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/49648")
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    			newX509 := getX509FromFile(t, "ca-cert-alt-2.pem")
    
    			sa := apps.Captured[0].ServiceAccountName()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. releasenotes/notes/fix-proxyconfig-endpoints-json.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 02:44:54 UTC 2023
    - 205 bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/revision_tag_test.go

    					"cannot modify tag",
    				},
    				{
    					"default tag-injects for istio injection enabled",
    					"default",
    					"stable",
    					"istio-injection=enabled",
    					"",
    				},
    			}
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    			baseArgs := []string{"tag"}
    			for _, tc := range tcs {
    				t.NewSubTest(tc.name).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. manifests/charts/UPDATING-CHARTS.md

    If the chart has a `values.schema.json`, that should be updated as well.
    
    ## Step 2. Update the istioctl/Operator values
    
    If you are modifying the `gateway` chart, you can stop here.
    All other charts, however, are exposed by `istioctl` and need to follow the steps below.
    
    The charts in the `manifests` directory are used in istioctl to generate an installation manifest.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. releasenotes/notes/47515.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
    - 47505
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 14:14:42 UTC 2023
    - 219 bytes
    - Viewed (0)
  7. releasenotes/notes/50791.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 50790
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 16:16:40 UTC 2024
    - 219 bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config clusters invalid" should fail
    		},
    		{ // listeners invalid
    			args:           strings.Split("listeners invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config listeners invalid" should fail
    		},
    		{ // logging empty
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/proxyconfig.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/kubeinject"
    	istioctlutil "istio.io/istio/istioctl/pkg/util"
    	sdscompare "istio.io/istio/istioctl/pkg/writer/compare/sds"
    	"istio.io/istio/istioctl/pkg/writer/envoy/clusters"
    	"istio.io/istio/istioctl/pkg/writer/envoy/configdump"
    	"istio.io/istio/operator/pkg/util"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  10. 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)
Back to top