Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,120 for nameslice (0.38 sec)

  1. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		},
    		Resolution: networking.ServiceEntry_DNS_ROUND_ROBIN,
    	},
    }
    
    func createWorkloadEntry(name, namespace string, spec *networking.WorkloadEntry) *config.Config {
    	return &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.WorkloadEntry,
    			Name:              name,
    			Namespace:         namespace,
    			CreationTimestamp: GlobalTime,
    		},
    		Spec: spec,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/invalid.status.yaml.golden

          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: invalid-backendRef-mixed
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/wasm/cache_test.go

    				ResourceName:    "namespace.resource",
    				ResourceVersion: "0",
    				RequestTimeout:  time.Second * 10,
    			},
    			wantCachedModules: map[moduleKey]*cacheEntry{
    				{name: ts.URL, checksum: cacheHitSum}: {modulePath: "test.wasm"},
    			},
    			wantCachedChecksums: map[string]*checksumEntry{
    				ts.URL: {checksum: cacheHitSum, resourceVersionByResource: map[string]string{"namespace.resource": "0"}},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. cluster/addons/addon-manager/kube-addons.sh

          return 0;
        (( tries-- ))
        log WRN "== Failed to start ${config_name} in namespace ${namespace} at $(date -Is). ${tries} tries remaining. =="
        sleep "${delay}";
      done
      return 1;
    }
    
    # Creates resources with addon mode Reconcile for create_resource_from_string.
    # Does not perform pruning.
    # $1 string with json or yaml.
    # $2 name of this object for logging
    # $3 namespace for the object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				# TYPE container_cpu_usage_seconds_total counter
    				container_cpu_usage_seconds_total{container="container_a",namespace="namespace_a",pod="pod_a"} 10 1624396278302
    				container_cpu_usage_seconds_total{container="container_a",namespace="namespace_b",pod="pod_b"} 10 1624396278302
    				container_cpu_usage_seconds_total{container="container_b",namespace="namespace_a",pod="pod_a"} 10 1624396278302
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  6. pkg/serviceaccount/claims.go

    	invalidIfDeletedBefore := nowTime.Add(-jwt.DefaultLeeway)
    	namespace := private.Kubernetes.Namespace
    	saref := private.Kubernetes.Svcacct
    	podref := private.Kubernetes.Pod
    	noderef := private.Kubernetes.Node
    	secref := private.Kubernetes.Secret
    	// Make sure service account still exists (name and UID)
    	serviceAccount, err := v.getter.GetServiceAccount(namespace, saref.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    		"missing ip":         {Metadata: &model.NodeMetadata{Namespace: wgA.Namespace, AutoRegisterGroup: wgA.Name}},
    		"missing namespace":  {IPAddresses: []string{"1.2.3.4"}, Metadata: &model.NodeMetadata{AutoRegisterGroup: wgA.Name}},
    		"non-existent group": {IPAddresses: []string{"1.2.3.4"}, Metadata: &model.NodeMetadata{Namespace: wgA.Namespace, AutoRegisterGroup: "dne"}},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/echotest/filters_test.go

    	// simple pod with a different namespace
    	a1Ns2 = &fakeInstance{Cluster: cls1, Namespace: echo2NS, Service: "a"}
    	a2Ns2 = &fakeInstance{Cluster: cls2, Namespace: echo2NS, Service: "a"}
    	// virtual machine
    	vm1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	vm2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "vm", DeployAsVM: true}
    	// headless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload.go

    				}
    			} else {
    				wg, err = kubeClient.Istio().NetworkingV1alpha3().WorkloadGroups(namespace).Get(context.Background(), name, metav1.GetOptions{})
    				// errors if the requested workload group does not exist in the given namespace
    				if err != nil {
    					return fmt.Errorf("workloadgroup %s not found in namespace %s: %v", name, namespace, err)
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	log.Debugf("Handle EDS endpoint %s %s in namespace %s", namespacedName.Name, event, namespacedName.Namespace)
    	if event == model.EventDelete {
    		esc.deleteEndpointSlice(ep)
    	} else {
    		esc.updateEndpointSlice(ep)
    	}
    	hostnames := esc.c.hostNamesForNamespacedName(namespacedName)
    	// Trigger EDS push for all hostnames.
    	esc.pushEDS(hostnames, namespacedName.Namespace)
    
    	name := serviceNameForEndpointSlice(esLabels)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top