Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 482 for Workload (0.13 sec)

  1. pkg/workloadapi/workload.proto

      Mode mode = 2;
    }
    
    // Workload represents a workload - an endpoint (or collection behind a hostname).
    // The xds primary key is "uid" as defined on the workload below.
    // Secondary (alias) keys are the unique `network/IP` pairs that the workload can be reached at.
    message Workload {
      // UID represents a globally unique opaque identifier for this workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/workload.go

    }
    
    // PrintWorkloadDump prints the relevant workloads in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintWorkloadDump(filter WorkloadFilter, outputFormat string) error {
    	zDump := c.ztunnelDump
    	filteredWorkloads := []*ZtunnelWorkload{}
    	for _, workload := range zDump.Workloads {
    		if filter.Verify(workload) {
    			filteredWorkloads = append(filteredWorkloads, workload)
    		}
    	}
    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. pilot/pkg/xds/workload.go

    type WorkloadGenerator struct {
    	Server *DiscoveryServer
    }
    
    var (
    	_ model.XdsResourceGenerator      = &WorkloadGenerator{}
    	_ model.XdsDeltaResourceGenerator = &WorkloadGenerator{}
    )
    
    // GenerateDeltas computes Workload resources. This is design to be highly optimized to delta updates,
    // and supports *on-demand* client usage. A client can subscribe with a wildcard subscription and get all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    	namespace = ctx.Namespace()
    	workloadCmd := &cobra.Command{
    		Use:   "workload",
    		Short: "Commands to assist in configuring and deploying workloads running on VMs and other non-Kubernetes environments",
    		Example: `  # workload group yaml generation
      istioctl x workload group create
    
      # workload entry configuration generation
      istioctl x workload entry configure`,
    	}
    	workloadCmd.AddCommand(groupCommand(ctx))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.pb.go

    	13, // 12: istio.workload.Workload.application_tunnel:type_name -> istio.workload.ApplicationTunnel
    	17, // 13: istio.workload.Workload.services:type_name -> istio.workload.Workload.ServicesEntry
    	0,  // 14: istio.workload.Workload.status:type_name -> istio.workload.WorkloadStatus
    	10, // 15: istio.workload.Workload.locality:type_name -> istio.workload.Locality
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-workload-dashboard.json

            "label": "Inbound Workload Namespace",
            "multi": true,
            "name": "srcns",
            "options": [],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 102.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-workload.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-workload-in.yaml

    John Howard <******@****.***> 1709232034 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 166 bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	// lookup by address should return the workload entry's address info
    	assert.Equal(t, s.lookup(s.addrXdsName("140.140.0.10")), []model.AddressInfo{{
    		Address: &workloadapi.Address{
    			Type: &workloadapi.Address_Workload{
    				Workload: &workloadapi.Workload{
    					Uid:               s.wleXdsName("name0"),
    					Name:              "name0",
    					Namespace:         testNS,
    					Addresses:         [][]byte{parseIP("140.140.0.10")},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. istioctl/pkg/metrics/metrics.go

    		return fmt.Errorf("failure running port forward process: %v", err)
    	}
    
    	printHeader(c.OutOrStdout())
    
    	workloads := args
    	for _, workload := range workloads {
    		sm, err := metrics(promAPI, workload, metricsDuration)
    		if err != nil {
    			return fmt.Errorf("could not build metrics for workload '%s': %v", workload, err)
    		}
    
    		printMetrics(c.OutOrStdout(), sm)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top