Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,984 for nAmespace (0.11 sec)

  1. 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)
  2. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	)
    
    	prf0 := statsapi.PodReference{Name: pName0, Namespace: namespace0, UID: "UID" + pName0}
    	prf1 := statsapi.PodReference{Name: pName1, Namespace: namespace0, UID: "UID" + pName1}
    	prf2 := statsapi.PodReference{Name: pName2, Namespace: namespace2, UID: "UID" + pName2}
    	prf3 := statsapi.PodReference{Name: pName3, Namespace: namespace0, UID: "UID" + pName3}
    	infos := map[string]cadvisorapiv2.ContainerInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			namespace.Setup(&externalNS, namespace.Config{Prefix: "external", Inject: false})).
    		SetupParallel(
    			deployment.Setup(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    					namespace.Future(&echo2NS),
    					namespace.Future(&echo3NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    			})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/tls.yaml

    kind: TLSRoute
    metadata:
      name: tls-match
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames:
      - "foo.com"
      rules:
      - backendRefs:
        - name: httpbin-foo
          port: 443
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: default
    spec:
      parentRefs:
      - name: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/namespace/matcher.go

    	}
    	return utilerrors.NewAggregate(errs)
    }
    
    // GetNamespaceLabels gets the labels of the namespace related to the attr.
    func (m *Matcher) GetNamespaceLabels(attr admission.Attributes) (map[string]string, error) {
    	// If the request itself is creating or updating a namespace, then get the
    	// labels from attr.Object, because namespaceLister doesn't have the latest
    	// namespace yet.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 15 00:53:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. operator/pkg/util/k8s.go

    		}
    	}
    	return nil
    }
    
    // CreateNamespace creates a namespace using the given k8s interface.
    func CreateNamespace(cs kubernetes.Interface, namespace string, network string, dryRun bool) error {
    	if dryRun {
    		scope.Infof("Not applying Namespace %s because of dry run.", namespace)
    		return nil
    	}
    	if namespace == "" {
    		// Setup default namespace
    		namespace = constants.IstioSystemNamespace
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. 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)
  8. tests/integration/ambient/waypoint_test.go

          namespaces:
            from: Same
      - name: {{.Service}}-svc
        hostname: {{.Service}}.{{.Namespace}}.svc
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
      - name: {{.Service}}-namespace
        hostname: {{.Service}}.{{.Namespace}}
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/util/hosts_test.go

    	// FQDN, cross namespace, all namespaces scope
    	g.Expect(NewScopedFqdn("*", "other", "foo.default.svc.cluster.local")).To(Equal(ScopedFqdn("*/foo.default.svc.cluster.local")))
    
    	// short name, same namespace, local scope
    	g.Expect(NewScopedFqdn("default", "default", "foo")).To(Equal(ScopedFqdn("default/foo.default.svc.cluster.local")))
    	// short name, same namespace, all namespaces scope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/util/service_lookup.go

    					result[NewScopedFqdn(ExportToAllNamespaces, r.Metadata.FullName.Namespace, h)] = s
    					exportsToAll = true
    				case ExportToNamespaceLocal:
    					result[NewScopedFqdn(hostsNamespaceScope, r.Metadata.FullName.Namespace, h)] = s
    				default:
    					result[NewScopedFqdn(ns, r.Metadata.FullName.Namespace, h)] = s
    				}
    
    				// If exports to all, we don't need to check other namespaces
    				if exportsToAll {
    					break
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top