Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 6,082 for naMespace (0.47 sec)

  1. pkg/kube/krt/index_test.go

    			Name:      "name2",
    			Namespace: "namespace",
    		},
    		Status: corev1.PodStatus{PodIP: "1.2.3.5"},
    	}
    	pc.CreateOrUpdateStatus(pod2)
    	tt.WaitUnordered("add/namespace/name2")
    	assert.Equal(t, Collection.Get(), ptr.Of("namespace/name,namespace/name2"))
    
    	pc.Delete(pod.Name, pod.Namespace)
    	pc.Delete(pod2.Name, pod2.Namespace)
    	tt.WaitUnordered("delete/namespace/name", "delete/namespace/name2")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tests/integration/security/remote_jwks/main_test.go

    			systemNs, err = istio.ClaimSystemNamespace(ctx)
    			return err
    		}).
    		Setup(namespace.Setup(&echoNS, namespace.Config{Prefix: "echo1", Inject: true})).
    		SetupParallel(
    			jwt.Setup(&jwtServer, namespace.Future(&systemNs)),
    			deployment.SetupSingleNamespace(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echoNS),
    				},
    			})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ivy/IvyExtraInfo.java

         *
         * @param namespace The namespace of the element whose value should be returned
         * @param name The name of the element whose value should be returned
         * @return The value of the element, or null if there is no such element.
         */
        @Nullable
        String get(String namespace, String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	for _, namespace := range ignoredNamespaces.UnsortedList() {
    		// Create namespace in ignored list, make sure its not created
    		createNamespace(t, client.Kube(), namespace, newData)
    		// Configmap in that namespace should not do anything either
    		createConfigMap(t, client.Kube(), "not-root", namespace, "k")
    		expectConfigMapNotExist(t, nc.configmaps, namespace)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    					log.Debugf("Switch selected namespace policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    					namespaceCfg = cfg
    				}
    			}
    		} else if cfg.Namespace != rootNamespace {
    			if workloadCfg == nil || cfg.CreationTimestamp.Before(&workloadCfg.CreationTimestamp) {
    				log.Debugf("Switch selected workload policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    				workloadCfg = cfg
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: disabled
      name: foo
    ---
    # Namespace doesn't have the label at all
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bar
    ---
    # Namespace is explicitly enabled in the new style
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio.io/rev: canary
      name: canary-test
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: consumer-override
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: httpbin-apple
        namespace: apple
        port: 80
      rules:
      - backendRefs:
        - name: httpbin-apple
          namespace: apple
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/types.gen.go

    				Generation:        obj.Generation,
    			},
    			Spec: obj,
    		}
    	},
    	gvk.Namespace: func(r runtime.Object) config.Config {
    		obj := r.(*k8sioapicorev1.Namespace)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.Namespace,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    				Annotations:       obj.Annotations,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/helper.go

    	return m
    }
    
    // Subresource sets the helper to access (<resource>/[ns/<namespace>/]<name>/<subresource>)
    func (m *Helper) WithSubresource(subresource string) *Helper {
    	m.Subresource = subresource
    	return m
    }
    
    func (m *Helper) Get(namespace, name string) (runtime.Object, error) {
    	req := m.RESTClient.Get().
    		NamespaceIfScoped(namespace, m.NamespaceScoped).
    		Resource(m.Resource).
    		Name(name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 26 03:45:13 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: bookinfo2
      labels:
        istio-injection: "enabled"
    spec: {}
    ---
    # Deployment should not generate a warning: although two services using that deployment
    # using the same port, they are in different namespaces.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top