Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for NamespacedName (0.27 sec)

  1. pilot/pkg/model/service.go

    	MeshExternal bool
    
    	// ResourceVersion represents the internal version of this object.
    	ResourceVersion string
    }
    
    func (s *Service) NamespacedName() types.NamespacedName {
    	return types.NamespacedName{Name: s.Attributes.Name, Namespace: s.Attributes.Namespace}
    }
    
    func (s *Service) Key() string {
    	if s == nil {
    		return ""
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    			scope.Infof("Watching a change for istio resource: %s/%s", a.GetNamespace(), a.GetName())
    			return []reconcile.Request{
    				{NamespacedName: types.NamespacedName{
    					Name:      a.GetLabels()[helmreconciler.OwningResourceName],
    					Namespace: a.GetLabels()[helmreconciler.OwningResourceNamespace],
    				}},
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server_test.go

    						id, c.certChain, v, i)
    				}
    			}
    
    		}
    	}
    }
    
    func TestCreateCertificateE2EWithImpersonateIdentity(t *testing.T) {
    	allowZtunnel := sets.Set[types.NamespacedName]{
    		{Name: "ztunnel", Namespace: "istio-system"}: {},
    	}
    	ztunnelCaller := security.KubernetesInfo{
    		PodName:           "ztunnel-a",
    		PodNamespace:      "istio-system",
    		PodUID:            "12345",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. istioctl/pkg/multixds/gather.go

    					break GetProxyLoop
    				}
    				namespacedName := pod.Name + "." + pod.Namespace
    				if visited[namespacedName] {
    					// If we already have information about the pod, skip it.
    					continue
    				}
    				resp, err := queryToOnePod(&pod)
    				if err != nil {
    					fmt.Fprintf(os.Stderr, "Skip the agent in Pod %s due to the error: %s\n", namespacedName, err.Error())
    					continue
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    		ingressServiceLabel = fmt.Sprintf("istio=%s", serviceLabelOverride)
    	}
    	name := types.NamespacedName{Name: ingressServiceName, Namespace: ingressServiceNamespace}
    	return i.CustomIngressFor(c, name, ingressServiceLabel)
    }
    
    func (i *istioImpl) EastWestGatewayFor(c cluster.Cluster) ingress.Instance {
    	name := types.NamespacedName{Name: eastWestIngressServiceName, Namespace: i.cfg.SystemNamespace}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject.go

    // SidecarTemplateData is the data object to which the templated
    // version of `SidecarInjectionSpec` is applied.
    type SidecarTemplateData struct {
    	TypeMeta                 metav1.TypeMeta
    	DeploymentMeta           types.NamespacedName
    	ObjectMeta               metav1.ObjectMeta
    	Spec                     corev1.PodSpec
    	ProxyConfig              *meshconfig.ProxyConfig
    	MeshConfig               *meshconfig.MeshConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. pkg/proxy/servicechangetracker_test.go

    	}
    	return append(array, svcPort)
    }
    
    func makeNSN(namespace, name string) types.NamespacedName {
    	return types.NamespacedName{Namespace: namespace, Name: name}
    }
    
    func makeServicePortName(ns, name, port string, protocol v1.Protocol) ServicePortName {
    	return ServicePortName{
    		NamespacedName: makeNSN(ns, name),
    		Port:           port,
    		Protocol:       protocol,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/secretcontroller.go

    	if !kube.AllSynced(c.configClusterSyncers) {
    		return false
    	}
    	// Check all remote clusters are synced (or timed out)
    	return c.cs.HasSynced()
    }
    
    func (c *Controller) processItem(key types.NamespacedName) error {
    	log.Infof("processing secret event for secret %s", key)
    	scrt := c.secrets.Get(key.Name, key.Namespace)
    	if scrt != nil {
    		log.Debugf("secret %s exists in informer cache, processing it", key)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/controller/tainteviction/taint_eviction_test.go

    			go controller.Run(ctx)
    
    			podIndexer.Add(item.prevPod)
    			controller.PodUpdated(nil, item.prevPod)
    
    			if item.awaitForScheduledEviction {
    				nsName := types.NamespacedName{Namespace: item.prevPod.Namespace, Name: item.prevPod.Name}
    				err := wait.PollImmediate(time.Millisecond*10, time.Second, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  10. pkg/kube/util.go

    func GetDeployMetaFromPod(pod *corev1.Pod) (types.NamespacedName, metav1.TypeMeta) {
    	if pod == nil {
    		return types.NamespacedName{}, metav1.TypeMeta{}
    	}
    	// try to capture more useful namespace/name info for deployments, etc.
    	// TODO(dougreid): expand to enable lookup of OWNERs recursively a la kubernetesenv
    
    	deployMeta := types.NamespacedName{Name: pod.Name, Namespace: pod.Namespace}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top