Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 550 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. pkg/test/framework/components/echo/kube/workload.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	appContainerName = "app"
    )
    
    var _ echo.Workload = &workload{}
    
    type workloadConfig struct {
    	pod        corev1.Pod
    	hasSidecar bool
    	grpcPort   uint16
    	cluster    cluster.Cluster
    	tls        *common.TLSSettings
    	stop       chan struct{}
    }
    
    type workload struct {
    	client *echoClient.Client
    
    	workloadConfig
    	forwarder  istioKube.PortForwarder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/workload.go

    )
    
    // WorkloadContainer is container for a number of Workload objects.
    type WorkloadContainer interface {
    	// Workloads retrieves the list of all deployed workloads for this Echo service.
    	// Guarantees at least one workload, if error == nil.
    	Workloads() (Workloads, error)
    	WorkloadsOrFail(t test.Failer) Workloads
    	MustWorkloads() Workloads
    
    	// Clusters where the workloads are deployed.
    	Clusters() cluster.Clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top