Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 178 for clusterIPs (0.43 sec)

  1. tests/integration/pilot/analysis/analysis_test.go

    spec:
      gateways: [missing-gw]
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
    `).ApplyOrFail(t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    			istioCtl.InvokeOrFail(t, []string{"x", "wait", "-v", "VirtualService", "reviews." + ns.Name()})
    		})
    }
    
    func TestAnalysisWritesStatus(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/cluster.go

    	}
    	diff := difflib.UnifiedDiff{
    		FromFile: "Istiod Clusters",
    		A:        difflib.SplitLines(istiodBytes.String()),
    		ToFile:   "Envoy Clusters",
    		B:        difflib.SplitLines(envoyBytes.String()),
    		Context:  c.context,
    	}
    	text, err := difflib.GetUnifiedDiffString(diff)
    	if err != nil {
    		return err
    	}
    	if text != "" {
    		fmt.Fprintln(c.w, "Clusters Don't Match")
    		fmt.Fprintln(c.w, text)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. releasenotes/notes/49011.yaml

    kind: feature
    area: security
    issue:
      - 47489
    releaseNotes:
      - |-
        **Added** support for istio CA to handle node authorization for CSRs with impersonate identity from remote clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 15:46:44 UTC 2024
    - 328 bytes
    - Viewed (0)
  4. pkg/test/framework/components/environment/kube/settings.go

    	"istio.io/istio/pkg/test/scopes"
    )
    
    // clusterIndex is the index of a cluster within the KubeConfig or topology file entries
    type clusterIndex int
    
    // clusterTopology defines the associations between multiple clusters in a topology.
    type clusterTopology = map[clusterIndex]clusterIndex
    
    // ClientFactoryFunc is a transformation function that creates k8s clients
    // from the provided k8s config files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/vm_test.go

    	stdOut, _, err := t.Clusters().Default().
    		PodExec(pilot, i.Settings().SystemNamespace, "discovery", cmd)
    	if err != nil {
    		scopes.Framework.Warnf("failed to force disconnect %s: %v: %v", proxyID, stdOut, err)
    	}
    }
    
    func scaleDeploymentOrFail(t framework.TestContext, name, namespace string, scale int32) {
    	s, err := t.Clusters().Default().Kube().AppsV1().Deployments(namespace).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server_test.go

    port: 8080
    readOnlyPort: 10255
    systemReserved:
      memory: 2Gi
    clusterDNS:
      - 192.168.1.1
      - 192.168.1.5
      - 192.168.1.8
    `,
    			overwrittenConfigFields: map[string]interface{}{
    				"Port":         int32(8080),
    				"ReadOnlyPort": int32(10255),
    				"SystemReserved": map[string]string{
    					"memory": "2Gi",
    				},
    				"ClusterDNS": []string{"192.168.1.1", "192.168.1.5", "192.168.1.8"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 21:48:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/test/framework/suitecontext.go

    	return c.globalScope.get(ref)
    }
    
    func (c *suiteContext) Environment() resource.Environment {
    	return c.environment
    }
    
    func (c *suiteContext) Clusters() cluster.Clusters {
    	return c.Environment().Clusters()
    }
    
    func (c *suiteContext) AllClusters() cluster.Clusters {
    	return c.Environment().AllClusters()
    }
    
    // Settings returns the current runtime.Settings.
    func (c *suiteContext) Settings() *resource.Settings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/gw_topology_test.go

    			templateParams := map[string]string{
    				"imagePullSecret": t.Settings().Image.PullSecret,
    				"injectLabel":     injectLabel,
    				"imagePullPolicy": t.Settings().Image.PullPolicy,
    			}
    
    			// we only apply to config clusters
    			t.ConfigIstio().Eval(gatewayNs.Name(), templateParams, `apiVersion: v1
    kind: Service
    metadata:
      name: custom-gateway
      labels:
        istio: ingressgateway
    spec:
      ports:
      - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    			clusterCfg: kubeadmapi.ClusterConfiguration{},
    			expected: kubeletConfig{
    				config: kubeletconfig.KubeletConfiguration{
    					FeatureGates:  map[string]bool{},
    					StaticPodPath: kubeadmapiv1.DefaultManifestsDir,
    					ClusterDNS:    []string{kubeadmapiv1.DefaultClusterDNSIP},
    					Authentication: kubeletconfig.KubeletAuthentication{
    						X509: kubeletconfig.KubeletX509Authentication{
    							ClientCAFile: constants.CACertName,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/cds.go

    	filter := newClusterFilter(names)
    	clusters := make([]*cluster.Cluster, 0, len(names))
    	for defaultClusterName, subsetFilter := range filter {
    		builder, err := newClusterBuilder(node, push, defaultClusterName, subsetFilter)
    		if err != nil {
    			log.Warn(err)
    			continue
    		}
    		clusters = append(clusters, builder.build()...)
    	}
    
    	resp := make(model.Resources, 0, len(clusters))
    	for _, c := range clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top