Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 330 for WORKLOADS (0.18 sec)

  1. pkg/scheduler/metrics/resources/resources_test.go

    	req, err := http.NewRequest("GET", "/metrics/resources", nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	h.ServeHTTP(r, req)
    
    	expected := `# HELP kube_pod_resource_limit [STABLE] Resources limit for workloads on the cluster, broken down by pod. This shows the resource usage the scheduler and kubelet expect per pod for resources along with the unit for the resource if any.
    # TYPE kube_pod_resource_limit gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    type ConfigWriter struct {
    	Stdout      io.Writer
    	ztunnelDump *ZtunnelDump
    	FullDump    []byte
    }
    
    type rawDump struct {
    	Services      json.RawMessage          `json:"services"`
    	Workloads     json.RawMessage          `json:"workloads"`
    	Policies      json.RawMessage          `json:"policies"`
    	Certificates  json.RawMessage          `json:"certificates"`
    	WorkloadState map[string]WorkloadState `json:"workloadstate"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pkg/kube/krt/bench_test.go

    			ServiceNames: slices.Map(services, func(e *v1.Service) string { return e.Name }),
    		}
    	})
    	Workloads.Register(func(e krt.Event[Workload]) {
    		events <- fmt.Sprintf(e.Latest().Name, e.Event)
    	})
    }
    
    type legacy struct {
    	pods      kclient.Client[*v1.Pod]
    	services  kclient.Client[*v1.Service]
    	queue     controllers.Queue
    	workloads map[types.NamespacedName]*Workload
    	handler   func(event krt.Event[Workload])
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/workload.go

    func (c *ConfigWriter) PrintWorkloadSummary(filter WorkloadFilter) error {
    	w := c.tabwriter()
    	zDump := c.ztunnelDump
    
    	verifiedWorkloads := make([]*ZtunnelWorkload, 0, len(zDump.Workloads))
    	for _, wl := range zDump.Workloads {
    		if filter.Verify(wl) {
    			verifiedWorkloads = append(verifiedWorkloads, wl)
    		}
    	}
    
    	// Sort by name, node
    	sort.Slice(verifiedWorkloads, func(i, j int) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. releasenotes/notes/49049.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:48 UTC 2024
    - 220 bytes
    - Viewed (0)
  6. releasenotes/notes/helm_chart_gateway_topologyspreadconstraints.yaml

    issue: []
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Gateway Helm chart for configuring [topologySpreadConstraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) on the Deployment. Can be used for better placement of Istio gateway workloads.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 20:53:09 UTC 2022
    - 457 bytes
    - Viewed (0)
  7. releasenotes/notes/helm_chart_pilot_topologyspreadconstraints.yaml

    issue:
    - 42938
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istiod Helm chart for configuring [topologySpreadConstraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) on the Deployment. Can be used for better placement of istiod workloads.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 11 06:41:50 UTC 2023
    - 448 bytes
    - Viewed (0)
  8. releasenotes/notes/disable-host-header-fallback.yaml

      metrics with junk data (and exploding metrics cardinality). With this change, it is possible that users relying on
      host headers for labeling the destination service for inbound traffic from out-of-mesh workloads will see that traffic
      labeled as `unknown`. The behavior can be restored by modifying Istio configuration to remove the `disable_host_header_fallback: true`
      configuration.
    upgradeNotes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. pkg/workloadapi/security/authorization.proto

    }
    
    enum Scope {
      // ALL means that the authorization policy will be applied to all workloads
      // in the mesh (any namespace).
      GLOBAL = 0;
      // NAMESPACE means that the policy will only be applied to workloads in a
      // specific namespace.
      NAMESPACE = 1;
      // WORKLOAD_SELECTOR means that the policy will only be applied to specific
      // workloads that were selected by their labels.
      WORKLOAD_SELECTOR = 2;
    }
    
    enum Action {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. tests/integration/pilot/original_src_addr_test.go

    		Run(func(t framework.TestContext) {
    			if t.Settings().Skip(echo.TProxy) {
    				t.Skip()
    			}
    			workloads, err := apps.A[0].Workloads()
    			if err != nil {
    				t.Errorf("failed to get Subsets: %v", err)
    				return
    			}
    			// check the server can see the client's original ip
    			var srcIps []string
    			for _, w := range workloads {
    				srcIps = append(srcIps, w.Address())
    			}
    			checkOriginalSrcIP(t, apps.A[0], apps.Tproxy[0], srcIps)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top