Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for workloadType (0.48 sec)

  1. 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,
          "status": "Healthy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    				Namespace:         "ns",
    				Addresses:         [][]byte{netip.AddrFrom4([4]byte{1, 2, 3, 4}).AsSlice()},
    				Network:           testNW,
    				CanonicalName:     "name",
    				CanonicalRevision: "latest",
    				WorkloadType:      workloadapi.WorkloadType_POD,
    				WorkloadName:      "name",
    				Status:            workloadapi.WorkloadStatus_UNHEALTHY,
    				ClusterId:         testC,
    			},
    		},
    		{
    			name:   "simple pod not ready",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	// WorkloadType represents the type of the workload. Used for telemetry.
    	WorkloadType WorkloadType `protobuf:"varint,12,opt,name=workload_type,json=workloadType,proto3,enum=istio.workload.WorkloadType" json:"workload_type,omitempty"`
    	// WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Namespace             string            `json:"namespace"`
    	ServiceAccount        string            `json:"serviceAccount"`
    	WorkloadName          string            `json:"workloadName"`
    	WorkloadType          string            `json:"workloadType"`
    	CanonicalName         string            `json:"canonicalName"`
    	CanonicalRevision     string            `json:"canonicalRevision"`
    	ClusterID             string            `json:"clusterId"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. pkg/workloadapi/workload.proto

      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
      // If set, this indicates a workload expects to directly receive tunnel traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			w.Addresses = [][]byte{addr.AsSlice()}
    		} else {
    			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)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/workload.go

    		aliases := addr.Aliases()
    		removed.DeleteAll(aliases...)
    		n := addr.ResourceName()
    		have.Insert(n)
    		haveAliases.InsertAll(aliases...)
    		switch w.TypeUrl {
    		case v3.WorkloadType:
    			if addr.GetWorkload() != nil {
    				resources = append(resources, &discovery.Resource{
    					Name:     n,
    					Aliases:  aliases,
    					Resource: protoconv.MessageToAny(addr.GetWorkload()), // TODO: pre-marshal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    					Network:           testNW,
    					Addresses:         [][]byte{parseIP("127.0.0.3")},
    					ServiceAccount:    "sa3",
    					Node:              "",
    					CanonicalName:     "other",
    					CanonicalRevision: "latest",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "name3",
    					ClusterId:         testC,
    				},
    			},
    		},
    	}})
    	s.assertEvent(t, s.wleXdsName("name2"))
    	s.assertEvent(t, s.wleXdsName("name3"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    // order after the types listed here
    var PushOrder = []string{
    	v3.ClusterType,
    	v3.EndpointType,
    	v3.ListenerType,
    	v3.RouteType,
    	v3.SecretType,
    	v3.AddressType,
    	v3.WorkloadType,
    	v3.WorkloadAuthorizationType,
    }
    
    // KnownOrderedTypeUrls has typeUrls for which we know the order of push.
    var KnownOrderedTypeUrls = sets.New(PushOrder...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/delta.go

    // This is used when resources are spontaneously pushed during Delta XDS
    func requiresResourceNamesModification(url string) bool {
    	return url == v3.AddressType || url == v3.WorkloadType
    }
    
    // neverRemoveDelta checks if a type should never remove resources
    func neverRemoveDelta(url string) bool {
    	// https://github.com/envoyproxy/envoy/issues/32823
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top