Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,846 for namespace1 (0.38 sec)

  1. tests/integration/ambient/gateway_conformance_test.go

    						namespace.Dump(ctx, ns)
    					}
    				}
    			})
    			csuite, err := suite.NewConformanceTestSuite(opts)
    			assert.NoError(t, err)
    			csuite.Setup(t, tests.ConformanceTests)
    
    			// remove the dataplane mode label from the gateway-conformance-infra namespace
    			// so that the ingress gateway doesn't get captured
    			ns, err := namespace.Claim(ctx, namespace.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/namespace/kube.go

    	if _, err := c.Kube().CoreV1().Namespaces().Create(context.TODO(), &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   n.name,
    			Labels: createNamespaceLabels(n.ctx, cfg),
    		},
    	}, metav1.CreateOptions{}); err != nil {
    		return err
    	}
    
    	if !cfg.SkipCleanup {
    		n.addCleanup(func() error {
    			return c.Kube().CoreV1().Namespaces().Delete(context.TODO(), n.name, kube2.DeleteOptionsForeground())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_file_renderer.cc

        includes_.SelfHeader();
      }
    
      includes_.Headers();
      name_space_.Open();
      BlankLine();
    
      for (const OpView &op : ops_) {
        OpRenderer(context_, op).Render();
      }
    
      name_space_.Close();
      if (context_.mode == RendererContext::kHeader) {
        guard_.Close();
      }
    }
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups-in.yaml

        - source:
            principals: ["from-mix-principal"]
            requestPrincipals: ["from-mix-requestPrincipals"]
            namespaces: ["from-mix-ns"]
        to:
        - operation:
            ports: ["80"]
      # Has mix of L4 and L7 in to
      - from:
        - source:
            principals: ["to-mix-principal"]
            namespaces: ["to-mix-ns"]
        to:
        - operation:
            ports: ["80"]
            methods: ["to-mix-method"]
      # Only L4
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    }
    
    func BenchmarkAuthorization(b *testing.B) {
    	g := NewGraph()
    
    	opts := &sampleDataOpts{
    		// To simulate high replication in a small number of namespaces:
    		// nodes:       5000,
    		// namespaces:  10,
    		// podsPerNode: 10,
    		nodes:                  500,
    		namespaces:             200,
    		podsPerNode:            200,
    		attachmentsPerNode:     20,
    		sharedConfigMapsPerPod: 0,
    		uniqueConfigMapsPerPod: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                              type: object
                          type: object
                          x-kubernetes-map-type: atomic
                        type: array
                      namespaces:
                        description: Namespaces list of namespace(s) on which ip pool
                          can be attached.
                        items:
                          type: string
                        type: array
                      priority:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/util/util_test.go

    		},
    		"Pod with ready sandbox status but network namespace mismatch": {
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					HostNetwork: true,
    				},
    			},
    			status: &kubecontainer.PodStatus{
    				SandboxStatuses: []*runtimeapi.PodSandboxStatus{
    					{
    						Id: "sandboxID1",
    						Linux: &runtimeapi.LinuxPodSandboxStatus{
    							Namespaces: &runtimeapi.Namespace{
    								Options: &runtimeapi.NamespaceOption{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:14:48 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // specify a namespace (which happens either because the resource
      // is not namespaced or the request targets all namespaces).
      // If this field is omitted or false then the `namespaces` field
      // must contain a non-empty list.
      // +optional
      optional bool clusterScope = 4;
    
      // `namespaces` is a list of target namespaces that restricts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/serviceaccounts_controller.go

    			return
    		}
    	}
    	c.queue.Add(sa.Namespace)
    }
    
    // namespaceAdded reacts to a Namespace creation by creating a default ServiceAccount object
    func (c *ServiceAccountsController) namespaceAdded(obj interface{}) {
    	namespace := obj.(*v1.Namespace)
    	c.queue.Add(namespace.Name)
    }
    
    // namespaceUpdated reacts to a Namespace update (or re-list) by creating a default ServiceAccount in the namespace if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top