Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 264 for nAmespace (1.5 sec)

  1. pilot/pkg/model/gateway.go

    					// Same namespace is always allowed
    					verifiedCertificateReferences.Insert(rn)
    					if s.GetTls().GetMode() == networking.ServerTLSSettings_MUTUAL {
    						verifiedCertificateReferences.Insert(rn + credentials.SdsCaSuffix)
    					}
    				} else if ps.ReferenceAllowed(gvk.Secret, rn, proxy.VerifiedIdentity.Namespace) {
    					// Explicitly allowed by some policy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta_test.go

    			Namespace: "test",
    			Name:      "c",
    		},
    	}
    	svcA := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "a",
    			Namespace: "default",
    			Hostname:  "a.default.svc.cluster.local",
    		},
    	}
    	svcB := &model.ServiceInfo{
    		Service: &workloadapi.Service{
    			Name:      "b",
    			Namespace: "default",
    			Hostname:  "b.default.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters_test.go

    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-off",
    					Namespace:        "istio-system",
    				},
    				Spec: &security.PeerAuthentication{
    					Mtls: &security.PeerAuthentication_MutualTLS{Mode: security.PeerAuthentication_MutualTLS_DISABLE},
    				},
    			},
    			IsMtlsDisabled: true,
    		},
    		"mtls-off-namespace": {
    			Config: config.Config{
    				Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe_test.go

    		},
    		{
    			namespace:      "namespace-foo",
    			serviceAccount: "service-bar",
    			trustDomain:    defaultTrustDomain,
    			expectedURI:    "spiffe://cluster.local/ns/namespace-foo/sa/service-bar",
    		},
    		{
    			namespace:      "foo",
    			serviceAccount: "bar",
    			trustDomain:    defaultTrustDomain,
    			expectedURI:    "spiffe://cluster.local/ns/foo/sa/bar",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry_test.go

    								Name:      "my-telemetry",
    								Namespace: "my-namespace",
    							},
    						},
    					},
    				},
    			},
    			args: args{
    				other: &computedTelemetries{
    					Logging: []*computedAccessLogging{
    						{
    							telemetryKey: telemetryKey{
    								Workload: types.NamespacedName{
    									Name:      "my-telemetry",
    									Namespace: "my-namespace-2",
    								},
    							},
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    	}
    	return i.ingress[c.Name()][labelSelector]
    }
    
    func (i *istioImpl) PodIPsFor(c cluster.Cluster, namespace string, label string) ([]corev1.PodIP, error) {
    	// Find the pod with the specified label in the specified namespace
    	fetchFn := testKube.NewSinglePodFetch(c, namespace, label)
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    	if err != nil {
    		return nil, err
    	}
    
    	pod := pods[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager_test.go

    	kubeClient clientset.Interface,
    	namespace, claimName string,
    ) {
    	time.Sleep(500 * time.Millisecond)
    	volumeClaim, _ :=
    		kubeClient.CoreV1().PersistentVolumeClaims(namespace).Get(context.TODO(), claimName, metav1.GetOptions{})
    	volumeClaim.Status = v1.PersistentVolumeClaimStatus{
    		Phase: v1.ClaimBound,
    	}
    	kubeClient.CoreV1().PersistentVolumeClaims(namespace).Update(context.TODO(), volumeClaim, metav1.UpdateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/volume/configmap/configmap.go

    	configMap, err := b.getConfigMap(b.pod.Namespace, b.source.Name)
    	if err != nil {
    		if !(errors.IsNotFound(err) && optional) {
    			klog.Errorf("Couldn't get configMap %v/%v: %v", b.pod.Namespace, b.source.Name, err)
    			return err
    		}
    		configMap = &v1.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: b.pod.Namespace,
    				Name:      b.source.Name,
    			},
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

      "kind": "Foo",
      "metadata": {
        "name": "instance",
        "namespace": "myns",
        "labels":{"foo":"bar"},
        "unspecified": "bar"
      },
      "unspecified":"bar",
      "pruned": {
        "apiVersion": "foo/v1",
        "kind": "Foo",
        "unspecified": "bar",
        "metadata": {
          "name": "instance",
          "namespace": "myns",
          "labels":{"foo":"bar"},
          "unspecified": "bar"
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    	// Because this relies on meshconfig, it needs to be outside initKubeClient
    	if s.kubeClient != nil {
    		// Build a namespace watcher. This must have no filter, since this is our input to the filter itself.
    		namespaces := kclient.New[*corev1.Namespace](s.kubeClient)
    		filter := namespace.NewDiscoveryNamespacesFilter(namespaces, s.environment.Watcher, s.internalStop)
    		s.kubeClient = kubelib.SetObjectFilter(s.kubeClient, filter)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top