Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 788 for Workload (0.16 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. tests/integration/security/testdata/authz/workload.yaml.tmpl

    # The following policy selects the workload
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      rules:
      - to:
        - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 347 bytes
    - Viewed (0)
  8. 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)
  9. samples/certs/generate-workload.sh

    fi
    
    openssl req -new -key "$FINAL_DIR/workload-$sa-key.pem" -subj "/" -out "$FINAL_DIR"/workload.csr -config "$FINAL_DIR"/workload.cfg
    
    openssl x509 -req -in "$FINAL_DIR"/workload.csr -CA "$cacert" -CAkey "$cakey" -CAcreateserial \
    -out "$FINAL_DIR/leaf-workload-$sa-cert.pem" -days 3650 -extensions v3_req -extfile "$FINAL_DIR"/workload.cfg
    
    cp "$FINAL_DIR/leaf-workload-$sa-cert.pem" "$FINAL_DIR/workload-$sa-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 23:57:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/workload-bad.yaml.tmpl

    # The following policy selects a non-exist workload
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}-bad
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
          "foo": "bla"
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 392 bytes
    - Viewed (0)
Back to top