Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 921 for nameslice (0.24 sec)

  1. tests/integration/ambient/main_test.go

    	apps.Uncaptured = match.ServiceName(echo.NamespacedName{Name: Uncaptured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Captured = match.ServiceName(echo.NamespacedName{Name: Captured, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    	apps.Mesh = inMesh.GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    	}
    }
    
    // DumpPodEvents dumps the pod events for either the provided pods or all pods in the namespace if none are provided.
    func DumpPodEvents(_ resource.Context, c cluster.Cluster, workDir, namespace string, pods ...corev1.Pod) {
    	pods = podsOrFetch(c, pods, namespace)
    
    	for _, pod := range pods {
    		list, err := c.Kube().CoreV1().Events(namespace).List(context.TODO(),
    			metav1.ListOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/controller.go

    // filterNamespace allows filtering out configs to only a specific namespace. This allows implementing the
    // List call which can specify a specific namespace.
    func filterNamespace(cfgs []config.Config, namespace string) []config.Config {
    	if namespace == metav1.NamespaceAll {
    		return cfgs
    	}
    	return slices.Filter(cfgs, func(c config.Config) bool {
    		return c.Namespace == namespace
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:namespace-controller
      subjects:
      - kind: ServiceAccount
        name: namespace-controller
        namespace: kube-system
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/kubelet/userns/userns_manager.go

    	lock sync.Mutex
    }
    
    // UserNamespace holds the configuration for the user namespace.
    type userNamespace struct {
    	// UIDs mappings for the user namespace.
    	UIDMappings []idMapping `json:"uidMappings"`
    	// GIDs mappings for the user namespace.
    	GIDMappings []idMapping `json:"gidMappings"`
    }
    
    // Pod user namespace mapping
    type idMapping struct {
    	// Required.
    	HostId uint32 `json:"hostId"`
    	// Required.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo_test.go

    							Namespace: namespace,
    						},
    					},
    				},
    			},
    			claimInfo: &ClaimInfo{
    				ClaimInfoState: state.ClaimInfoState{
    					ClaimName: claimName,
    					Namespace: namespace,
    				},
    			},
    			expectedResult: true,
    		},
    		{
    			description:    "cache miss",
    			claimInfoCache: &claimInfoCache{},
    			claimInfo: &ClaimInfo{
    				ClaimInfoState: state.ClaimInfoState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. tests/integration/ambient/waypoint_test.go

    				New().
    				Eval(
    					apps.Namespace.Name(),
    					map[string]any{
    						"Service":   Captured,
    						"Namespace": apps.Namespace.Name(),
    						"Port":      apps.Captured.PortForName("http").ServicePort,
    					},
    					config).
    				ApplyOrFail(t, apply.CleanupConditionally)
    
    			retry.UntilSuccessOrFail(t, func() error {
    				return checkWaypointIsReady(t, apps.Namespace.Name(), "simple-http-waypoint")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/dns/server/name_table_test.go

    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    					"pod3.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"19.6.7.8"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/bugreport/bugreport.go

    	namespace, pod, container string,
    ) (string, *processlog.Stats, int, error) {
    	defer logRuntime(time.Now(), "Done getting logs only for %v/%v/%v", namespace, pod, container)
    
    	log.Infof("Getting logs for %s/%s/%s...", namespace, pod, container)
    	clog, err := runner.Logs(namespace, pod, container, false, config.DryRun)
    	if err != nil {
    		return "", nil, 0, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    	})
    	assert.Equal(t, deploys, []*appsv1.Deployment{obj1, obj2})
    	assert.Equal(t, tester.Get(obj3.Name, obj3.Namespace), nil)
    
    	tester.Delete(obj3.Name, obj3.Namespace)
    	tester.Delete(obj2.Name, obj2.Namespace)
    	tester.Delete(obj1.Name, obj1.Namespace)
    	tracker.WaitOrdered("delete/2", "delete/1")
    	assert.Equal(t, tester.List(obj1.Namespace, klabels.Everything()), nil)
    
    	// Create some more objects again
    	tester.Create(obj3)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top