Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 330 for WORKLOADS (0.1 sec)

  1. tests/integration/pilot/multiplecontrolplanes/main_test.go

    				statusCode int
    				from       echo.Instances
    				to         echo.Instances
    			}{
    				{
    					name:       "workloads within same usergroup can communicate, same namespace",
    					statusCode: http.StatusOK,
    					from:       apps.NS[0].A,
    					to:         apps.NS[0].B,
    				},
    				{
    					name:       "workloads within same usergroup can communicate, different namespaces",
    					statusCode: http.StatusOK,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

          app: ratings-app # Multiple sidecars select overlapping workloads, should generate errors for both
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: overlap-2
      namespace: default
    spec:
      workloadSelector:
        labels:
          myapp: ratings-myapp # Multiple sidecars select overlapping workloads, should generate errors for both
      egress:
      - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/match/matchers_test.go

    }
    
    func (f fakeInstance) Addresses() []string {
    	panic("implement me")
    }
    
    func (f fakeInstance) Workloads() (echo.Workloads, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) WorkloadsOrFail(test.Failer) echo.Workloads {
    	panic("implement me")
    }
    
    func (f fakeInstance) MustWorkloads() echo.Workloads {
    	panic("implement me")
    }
    
    func (f fakeInstance) Clusters() cluster.Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/instance.go

    	// Addresses of service in dualmode
    	Addresses() []string
    
    	// Restart restarts the workloads associated with this echo instance
    	Restart() error
    
    	// UpdateWorkloadLabel update pod labels of this echo instance
    	UpdateWorkloadLabel(add map[string]string, remove []string) error
    
    	// WithWorkloads returns a target with only the specified subset of workloads
    	WithWorkloads(wl ...Workload) Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 11 03:58:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/waypoint.go

    	services        map[host.Name]*model.Service
    	orderedServices []*model.Service
    }
    
    // findWaypointResources returns workloads and services associated with the waypoint proxy
    func findWaypointResources(node *model.Proxy, push *model.PushContext) ([]model.WorkloadInfo, *waypointServices) {
    	key := model.WaypointKeyForProxy(node)
    	workloads := push.WorkloadsForWaypoint(key)
    	serviceInfos := push.ServicesForWaypoint(key)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. releasenotes/notes/network-gw-metadata.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    releaseNotes:
      - |
        **Fixed** a bug where `destination_cluster` reported by client proxies may be wrong
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 03:59:34 UTC 2024
    - 220 bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/workload-ns.yaml.tmpl

    # The following policy selects all workloads in namespace 1
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .Namespace.Prefix }}-all
    spec:
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 283 bytes
    - Viewed (0)
  8. tests/integration/security/testdata/authz/workload-system-ns.yaml.tmpl

    # The following policy selects workloads for the service in all namespaces
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-system-{{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      rules:
      - to:
        - operation:
            paths: ["/policy-system-{{ .To.ServiceName }}"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 360 bytes
    - Viewed (0)
  9. pilot/pkg/xds/mesh_network_test.go

    		ip: "10.10.10.30", port: 9090,
    		metaNetwork: "vm",
    	}
    	// VM always sees itself directly
    	vm.Expect(vm, "10.10.10.30:9090")
    
    	workloads := []*workload{pod, vm}
    
    	var kubeObjects []runtime.Object
    	var configObjects []config.Config
    	for _, w := range workloads {
    		_, objs := w.kubeObjects()
    		kubeObjects = append(kubeObjects, objs...)
    		configObjects = append(configObjects, w.configs()...)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. security/tools/deb/description

    Istio security node agent provides cert provision service for workloads....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 05:07:02 UTC 2018
    - 73 bytes
    - Viewed (0)
Back to top