Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for namespace_a (0.26 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		return nil
    	}
    	namespaces := []string{}
    	for _, ns := range r.Namespaces {
    		if ls.Matches(toNamespaceSet(ns.Name, ns.Labels)) {
    			namespaces = append(namespaces, ns.Name)
    		}
    	}
    	// Ensure stable order
    	sort.Strings(namespaces)
    	return namespaces
    }
    
    func nilOrEqual(have *string, expected string) bool {
    	return have == nil || *have == expected
    }
    
    func humanReadableJoin(ss []string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    					Namespace: spl[1],
    					Name:      spl[0],
    				})
    			}
    		}
    	}
    	switch variant {
    	case "httproute":
    		return tmpl.MustEvaluate(`apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: "{{.Namespace}}{{.Match | replace "*" "wild"}}{{.Dest}}"
      namespace: {{.Namespace}}
      creationTimestamp: "{{.Time}}"
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	status := &kubecontainer.PodStatus{
    		ID:        pod.UID,
    		Name:      pod.Name,
    		Namespace: pod.Namespace,
    		SandboxStatuses: []*runtimeapi.PodSandboxStatus{
    			{
    				Id:       "sandboxID",
    				State:    runtimeapi.PodSandboxState_SANDBOX_READY,
    				Metadata: &runtimeapi.PodSandboxMetadata{Name: pod.Name, Namespace: pod.Namespace, Uid: "sandboxuid", Attempt: uint32(0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    		{
    			"prometheus-namespace",
    			[]config.Config{newTelemetry("default", prometheus)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			nil, // No Telemetry API configured, fall back to legacy mesh config setting
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top