Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for ns1 (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect-path.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-1
      namespace: gateway-api-example-ns1
    spec:
      parentRefs:
      - name: my-filter-gateway
        sectionName: http
      hostnames:
      - my-filter.example.com
      rules:
      - filters:
        - type: RequestRedirect
          requestRedirect:
            path:
              type: ReplaceFullPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 391 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/request_test.go

    		{
    			name: "object specified is a list and its items have managed fields",
    			object: &corev1.PodList{
    				Items: []corev1.Pod{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name:      "foo",
    							Namespace: "ns1",
    							ManagedFields: []metav1.ManagedFieldsEntry{
    								{Manager: "a", Operation: metav1.ManagedFieldsOperationUpdate, Time: &metav1.Time{Time: time.Now()}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. tests/integration/security/filebased_tls_origination/main_test.go

    	for index, namespacedName := range apps.Ns1.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "client":
    			client = apps.Ns1.All[index]
    		case namespacedName.Name == "server":
    			server = apps.Ns1.All[index]
    		case namespacedName.Name == "internal-client":
    			internalClient = apps.Ns1.All[index]
    		}
    	}
    	for index, namespacedName := range apps.Ns2.All.NamespacedNames() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/kubelet/configmap/configmap_manager_test.go

    	existingMaps := map[string][]string{
    		"ns1": {"s1", "s2", "s20"},
    		"ns2": {"s3", "s4", "s40"},
    	}
    	shouldExist := func(ns, configMap string) bool {
    		if cmaps, ok := existingMaps[ns]; ok {
    			for _, cm := range cmaps {
    				if cm == configMap {
    					return true
    				}
    			}
    		}
    		return false
    	}
    
    	for _, ns := range []string{"ns1", "ns2", "ns3"} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  5. pkg/config/resource/metadata_test.go

    func TestMetadata_Clone_NilMaps(t *testing.T) {
    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName: NewFullName("ns1", "rs1"),
    		Version:  Version("v1"),
    	}
    
    	c := m.Clone()
    	g.Expect(m).To(Equal(c))
    }
    
    func TestMetadata_Clone_NonNilMaps(t *testing.T) {
    	g := NewWithT(t)
    
    	m := Metadata{
    		FullName:    NewFullName("ns1", "rs1"),
    		Version:     Version("v1"),
    		Annotations: map[string]string{"foo": "bar"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-rewrite.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http-filter-1
      namespace: gateway-api-example-ns1
    spec:
      parentRefs:
      - name: my-filter-gateway
        sectionName: http
      hostnames:
      - my-filter.example.com
      rules:
      - filters:
        - type: URLRewrite
          urlRewrite:
            path:
              type: ReplaceFullPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 381 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/httproute.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: my-route
      namespace: gateway-api-example-ns2
    spec:
      parentRefs:
      - kind: Gateway
        name: foo-gateway
        namespace: gateway-api-example-ns1
      rules:
      - backendRefs:
        - name: foo-svc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 339 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/0-namespaces.yaml

    # These namespaces can be used for examples without recreating them each time.
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: gateway-api-example-ns1
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 233 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-strict.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: foo-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 573 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-namespaces.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: prod-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 446 bytes
    - Viewed (0)
Back to top