Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,965 for nameslice (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/multicluster/inconsistent-service-1.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: my-service
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
      - name: tcp-foo
        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # Service with extra port in cluster2, should generate warning.
    apiVersion: v1
    kind: Service
    metadata:
      name: extra-port
      namespace: my-namespace
    spec:
      selector:
        app: my-service
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0004
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.yaml

    metadata:
      name: allow-service
      namespace: service
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: HTTPRoute
        namespace: istio-system
      to:
      - group: ""
        kind: Service
        name: my-svc
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint.go

    				return fmt.Errorf("failed to create Kubernetes client: %v", err)
    			}
    			ns := ctx.NamespaceOrDefault(ctx.Namespace())
    			// If a user decides to enroll their namespace with a waypoint, verify that they have labeled their namespace as ambient.
    			// If they don't, the user will be warned and be presented with the command to label their namespace as ambient if they
    			// choose to do so.
    			//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

    metadata:
      name: invalid-backendRef-kind
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example"]
      rules:
      - backendRefs:
        - name: httpbin
          kind: GcsBucket
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: invalid-backendRef-notfound
      namespace: default
    spec:
      parentRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. pkg/apis/scheduling/validation/validation_test.go

    	errorCases := map[string]scheduling.PriorityClass{
    		"with namespace": {
    			ObjectMeta: metav1.ObjectMeta{Name: "tier1", Namespace: "foo"},
    			Value:      100,
    		},
    		"invalid name": {
    			ObjectMeta: metav1.ObjectMeta{Name: "tier&1", Namespace: ""},
    			Value:      100,
    		},
    		"incorrect system class name": {
    			ObjectMeta:    metav1.ObjectMeta{Name: spcs[0].Name, Namespace: ""},
    			Value:         0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:30:47 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  7. pkg/config/resource/name.go

    type FullName struct {
    	Namespace Namespace
    	Name      LocalName
    }
    
    // String interface implementation.
    func (n FullName) String() string {
    	if len(n.Namespace) == 0 {
    		return string(n.Name)
    	}
    	return string(n.Namespace) + "/" + string(n.Name)
    }
    
    // NewShortOrFullName tries to parse the given name to resource.Name. If the name does not include namespace information,
    // the defaultNamespace is used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 14 13:55:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/parents: HTTPRoute/same-namespace-valid.istio-system
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: same-namespace-valid-0-istio-autogenerated-k8s-gateway
      namespace: istio-system
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-same-namespace
      hosts:
      - '*'
      http:
      - name: istio-system.same-namespace-valid.0
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/common.go

    import (
    	"istio.io/api/operator/v1alpha1"
    )
    
    const (
    	globalKey         = "global"
    	istioNamespaceKey = "istioNamespace"
    )
    
    // Namespace returns the namespace of the containing CR.
    func Namespace(iops *v1alpha1.IstioOperatorSpec) string {
    	if iops.Namespace != "" {
    		return iops.Namespace
    	}
    	if iops.Values == nil {
    		return ""
    	}
    	v := iops.Values.AsMap()
    	if v[globalKey] == nil {
    		return ""
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/destination_rule_test.go

    				from: []types.NamespacedName{
    					{
    						Namespace: "default",
    						Name:      "dr1",
    					},
    					{
    						Namespace: "default",
    						Name:      "dr2",
    					},
    				},
    			},
    			r: &ConsolidatedDestRule{
    				from: []types.NamespacedName{
    					{
    						Namespace: "default",
    						Name:      "dr1",
    					},
    					{
    						Namespace: "default",
    						Name:      "dr3",
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 07 03:52:19 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top