Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for WorkloadSelector (0.26 sec)

  1. pilot/pkg/xds/bench_test.go

    				Name:              "selector",
    				Namespace:         "default",
    				CreationTimestamp: time.Now(),
    			},
    			Spec: &security.PeerAuthentication{
    				Selector: &v1beta1.WorkloadSelector{MatchLabels: map[string]string{"type": "eds-benchmark"}},
    				Mtls:     &security.PeerAuthentication_MutualTLS{Mode: security.PeerAuthentication_MutualTLS_DISABLE},
    			},
    		})
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		selector1 := func() *config.Config {
    			c := httpStaticOverlay.DeepCopy()
    			se := c.Spec.(*networking.ServiceEntry)
    			se.Hosts = append(se.Hosts, "selector1.com")
    			se.Endpoints = nil
    			se.WorkloadSelector = &networking.WorkloadSelector{
    				Labels: map[string]string{"app": "wle"},
    			}
    			return &c
    		}()
    		createConfigs([]*config.Config{selector1}, store, t)
    		// Service change, so we need a full push
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    						SubjectAltNames:    []string{"foo.default.svc.cluster.local"},
    						InsecureSkipVerify: &wrappers.BoolValue{Value: true},
    					},
    				},
    				WorkloadSelector: &v1beta1.WorkloadSelector{},
    			},
    			enableAutoSni:            false,
    			enableVerifyCertAtClient: true,
    			expectTLSContext: &tls.UpstreamTlsContext{
    				CommonTlsContext: &tls.CommonTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. pilot/pkg/xds/mesh_network_test.go

      name: remote-we-svc
      namespace: test
    spec:
      hosts:
      - remote-we-svc
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      location: MESH_INTERNAL
      workloadSelector:
        labels:
          app: remote-we-svc
    `,
    		},
    	}
    	workloadCases := []struct {
    		name         string
    		entries      []entry
    		expectations map[string][]xdstest.LocLbEpInfo
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        required:
                        - targetHost
                        - targetPort
                        type: object
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this `DestinationRule` configuration should be applied.
                    properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                        required:
                        - targetHost
                        - targetPort
                        type: object
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this `DestinationRule` configuration should be applied.
                    properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

          port:
            name: tls
            number: 9080
            protocol: %s
          tls:
            mode: SIMPLE
            privateKey: "httpbinkey.pem"
            serverCertificate: "httpbin.pem"
      workloadSelector:
        labels:
          app: foo
    ---
    `, protocol)
    	}
    	sidecarMutual := func(protocol string) string {
    		return fmt.Sprintf(`
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster.go

    	meshExternal    bool
    	serviceMTLSMode model.MutualTLSMode
    	// Indicates the service registry of the cluster being built.
    	serviceRegistry provider.ID
    	// Indicates if the destinationRule has a workloadSelector
    	isDrWithSelector bool
    }
    
    func applyTCPKeepalive(mesh *meshconfig.MeshConfig, c *cluster.Cluster, tcp *networking.ConnectionPoolSettings_TCPSettings) {
    	// Apply mesh wide TCP keepalive if available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                        required:
                        - targetHost
                        - targetPort
                        type: object
                    type: object
                  workloadSelector:
                    description: Criteria used to select the specific set of pods/VMs
                      on which this `DestinationRule` configuration should be applied.
                    properties:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    	if len(matchedPA) != 0 {
    		printConfigs(writer, matchedPA)
    	}
    
    	return nil
    }
    
    // Workloader is used for matching all configs
    type Workloader interface {
    	GetSelector() *typev1beta1.WorkloadSelector
    }
    
    // findMatchedConfigs should filter out unrelated configs that are not matched given podsLabels.
    // When the config has no selector labels, this method will treat it as qualified namespace level
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top