Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,025 for nameslice (0.25 sec)

  1. pilot/pkg/model/credentials/resource.go

    	ResourceType string
    	// Name is the name of the secret
    	Name string
    	// Namespace is the namespace the secret resides in. For implicit namespace references (such as in KubernetesSecretType),
    	// this will be resolved to the appropriate namespace. As a result, this should never be empty.
    	Namespace string
    	// ResourceName is the original name of the resource
    	ResourceName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. istioctl/pkg/cli/option.go

    		"Istio system namespace")
    	return r
    }
    
    // Namespace returns the namespace flag value.
    func (r *RootFlags) Namespace() string {
    	return *r.namespace
    }
    
    // IstioNamespace returns the istioNamespace flag value.
    func (r *RootFlags) IstioNamespace() string {
    	return *r.istioNamespace
    }
    
    // DefaultNamespace returns the default namespace to use.
    func (r *RootFlags) DefaultNamespace() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 18:01:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	PluginName = "NamespaceLifecycle"
    	// how long a namespace stays in the force live lookup cache before expiration.
    	forceLiveLookupTTL = 30 * time.Second
    	// how long to wait for a missing namespace before re-checking the cache (and then doing a live lookup)
    	// this accomplishes two things:
    	// 1. It allows a watch-fed cache time to observe a namespace creation event
    	// 2. It allows time for a namespace creation to distribute to members of a storage cluster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/credentials/resource_test.go

    			resource:         "kubernetes-gateway://namespace/cert",
    			defaultNamespace: "default",
    			expected: SecretResource{
    				ResourceType: KubernetesGatewaySecretType,
    				Name:         "cert",
    				Namespace:    "namespace",
    				ResourceName: "kubernetes-gateway://namespace/cert",
    				Cluster:      "config",
    			},
    		},
    		{
    			name:             "kubernetes-gateway without namespace",
    			resource:         "kubernetes-gateway://cert",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/namespace_handler.go

    )
    
    // NamespaceDiscoveryHandler is to handle namespace selected or deselected because of discoverySelectors change,
    // rather than namespace add/update/delete event triggered from namespace informer.
    func (s *Controller) NamespaceDiscoveryHandler(namespace string, event model.Event) {
    	if event == model.EventDelete {
    		log.Debugf("Handle event namespace %s deselected", namespace)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 06 13:44:45 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/http.status.yaml.golden

          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http-not-selected
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_total",
    			Help:           "Number of LIST requests served from watch cache",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource_prefix", "index"},
    	)
    	listCacheNumFetched = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_fetched_objects_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. pkg/auth/authorizer/abac/example_policy_file.jsonl

    {"apiVersion": "abac.authorization.kubernetes.io/v1beta1", "kind": "Policy", "spec": {"user":"kubelet",   "namespace": "*",              "resource": "pods",                       "readonly": true }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 12:24:57 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  9. istioctl/pkg/util/handlers/handlers_test.go

    			namespace:     "",
    			wantPodName:   "istio-security-post-install-1.2.2-bm9w2",
    			wantNamespace: "istio-system",
    		},
    		{
    			proxyName:     "service/istiod",
    			namespace:     "",
    			wantPodName:   "service/istiod",
    			wantNamespace: "",
    		},
    		{
    			proxyName:     "service/istiod",
    			namespace:     "namespace",
    			wantPodName:   "service/istiod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/telemetry-selector.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: productpage
      name: productpage-other
      namespace: other
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: reviews
      name: reviews
      namespace: default
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: ratings-app
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top