Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for WorkloadName (0.25 sec)

  1. pkg/kube/labels/labels.go

    // supplied `workloadName`. For canonical revision, `app.kubernetes.io/version` is checked,
    // followed by `version` and finally defaulting to the literal value of `"latest"`.
    func CanonicalService(labels map[string]string, workloadName string) (string, string) {
    	return canonicalServiceName(labels, workloadName), canonicalServiceRevision(labels)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "name": "ratings-v1-6484c4d9bb-mdxm5",
          "namespace": "bookinfo",
          "trustDomain": "cluster.local",
          "serviceAccount": "bookinfo-ratings",
          "workloadName": "ratings-v1",
          "workloadType": "deployment",
          "canonicalName": "ratings",
          "canonicalRevision": "v1",
          "network": "network1",
          "node": "ambient-worker2",
          "nativeTunnel": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					Node:              "",
    					Network:           testNW,
    					CanonicalName:     "name1",
    					CanonicalRevision: "latest",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "name1",
    					Services: map[string]*workloadapi.PortList{
    						"ns1/se.istio.io": {
    							Ports: []*workloadapi.Port{
    								{
    									ServicePort: 80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				Network:           testNW,
    				CanonicalName:     "name",
    				CanonicalRevision: "latest",
    				WorkloadType:      workloadapi.WorkloadType_POD,
    				WorkloadName:      "name",
    				Status:            workloadapi.WorkloadStatus_UNHEALTHY,
    				ClusterId:         testC,
    			},
    		},
    		{
    			name:   "simple pod not ready",
    			inputs: []any{},
    			pod: &v1.Pod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    		TLSMode:               b.tlsMode,
    		Address:               endpointAddress,
    		EndpointPort:          uint32(endpointPort),
    		ServicePortName:       svcPortName,
    		Network:               networkID,
    		WorkloadName:          b.workloadName,
    		Namespace:             b.namespace,
    		HostName:              b.hostname,
    		SubDomain:             b.subDomain,
    		DiscoverabilityPolicy: discoverabilityPolicy,
    		HealthStatus:          healthStatus,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Name                  string            `json:"name"`
    	Namespace             string            `json:"namespace"`
    	ServiceAccount        string            `json:"serviceAccount"`
    	WorkloadName          string            `json:"workloadName"`
    	WorkloadType          string            `json:"workloadType"`
    	CanonicalName         string            `json:"canonicalName"`
    	CanonicalRevision     string            `json:"canonicalRevision"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			log.Warnf("skipping workload entry %s/%s; DNS Address resolution is not yet implemented", wle.Namespace, wle.Name)
    		}
    
    		w.WorkloadName, w.WorkloadType = wle.Name, workloadapi.WorkloadType_POD // XXX(shashankram): HACK to impersonate pod
    		w.CanonicalName, w.CanonicalRevision = kubelabels.CanonicalService(wle.Labels, w.WorkloadName)
    
    		setTunnelProtocol(wle.Labels, wle.Annotations, w)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/config.go

    	case *meshAPI.ProxyConfig_ServiceCluster:
    		return serviceClusterOrDefault(name.ServiceCluster, metadata)
    
    	case *meshAPI.ProxyConfig_TracingServiceName_:
    		workloadName := metadata.WorkloadName
    		if workloadName == "" {
    			workloadName = "istio-proxy"
    		}
    
    		switch name.TracingServiceName {
    		case meshAPI.ProxyConfig_APP_LABEL_AND_NAMESPACE:
    			return serviceClusterOrDefault("istio-proxy", metadata)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				map[string]string{"app": "wle"}, "default"),
    		}
    		for _, i := range instances[:2] {
    			i.Endpoint.WorkloadName = "wl"
    			i.Endpoint.Namespace = selector.Name
    		}
    		for _, i := range instances[2:] {
    			i.Endpoint.WorkloadName = "wl3"
    			i.Endpoint.Namespace = selector.Name
    		}
    		expectProxyInstances(t, sd, instances[:2], "2.2.2.2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util_test.go

    		want     *core.Metadata
    	}{
    		{
    			name: "all empty",
    			metadata: &model.EndpointMetadata{
    				TLSMode:      model.DisabledTLSModeLabel,
    				Network:      "",
    				WorkloadName: "",
    				ClusterID:    "",
    			},
    			want: &core.Metadata{
    				FilterMetadata: map[string]*structpb.Struct{
    					IstioMetadataKey: {
    						Fields: map[string]*structpb.Value{
    							"workload": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top