Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for nameslice (0.22 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                {{- end }}
              {{- end }}
          waypoint: |
            apiVersion: v1
            kind: ServiceAccount
            metadata:
              name: {{.ServiceAccount | quote}}
              namespace: {{.Namespace | quote}}
              annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    					Name:             "test-desinationrule",
    					Namespace:        TestServiceNamespace,
    				},
    				Spec: destRuleWithNewSubsets,
    			}},
    			configUpdated: sets.New(
    				model.ConfigKey{Kind: kind.ServiceEntry, Name: "testnew.com", Namespace: TestServiceNamespace},
    				model.ConfigKey{Kind: kind.DestinationRule, Name: "test-desinationrule", Namespace: TestServiceNamespace}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    }
    
    func podWithUIDNameNs(uid types.UID, name, namespace string) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:         uid,
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    	}
    }
    
    func podWithUIDNameNsSpec(uid types.UID, name, namespace string, spec v1.PodSpec) *v1.Pod {
    	pod := podWithUIDNameNs(uid, name, namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/garbagecollector_test.go

    					pendingAttemptToDelete: []*node{},                                                                                 // namespace-scoped virtual object without a namespace coordinate not re-queued
    				}),
    				// 6,7: observe namespace-scoped parent
    				processEvent(makeAddEvent(pod1ns1)),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    below can handle this for you. Replace `RELEASE` and `NAMESPACE` with the name and namespace of the release: ```console KINDS=(service deployment) RELEASE=istio-ingressgateway NAMESPACE=istio-system for KIND in "${KINDS[@]}"; do kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-name=$RELEASE kubectl --namespace $NAMESPACE --overwrite=true annotate $KIND $RELEASE meta.helm.sh/release-namespace=$NAMESPACE kubectl --namespace $NAMESPACE --overwrite=true label...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		// Group API
    
    		// legacy namespace param is ignored
    		{
    			url:       "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/simple?namespace=",
    			namespace: "",
    			legacy:    true,
    		},
    		{
    			url:       "/" + prefix + "/" + testGroupVersion.Group + "/" + testGroupVersion.Version + "/simple?namespace=other",
    			namespace: "",
    			legacy:    true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy_test.go

    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "myjob2",
    					Namespace: metav1.NamespaceDefault,
    					UID:       theUID,
    				},
    				Spec: validSpec,
    			},
    		},
    		"dns invalid name": {
    			wantWarningsCount: 1,
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "my job2",
    					Namespace: metav1.NamespaceDefault,
    					UID:       theUID,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    			name:      "* and ns1 together are not allowed",
    			namespace: "ns5",
    			exportTo:  []string{"*", "ns1"},
    			wantErr:   true,
    		},
    		{
    			name:      ". and same namespace in exportTo is not okay",
    			namespace: "ns5",
    			exportTo:  []string{".", "ns5"},
    			wantErr:   true,
    		},
    		{
    			name:      "duplicate namespaces in exportTo is not okay",
    			namespace: "ns5",
    			exportTo:  []string{"ns1", "ns2", "ns1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	var pods = []*v1.Pod{
    		st.MakePod().Name("p0").Namespace("ns1").Annotation("annot1", "val1").NominatedNodeName("node1").Obj(),
    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    		st.MakePod().Name("p2").Namespace("ns2").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node3").Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/proxier_test.go

    			masq:     true,
    		},
    	})
    }
    
    func makeTestService(namespace, name string, svcFunc func(*v1.Service)) *v1.Service {
    	svc := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec:   v1.ServiceSpec{},
    		Status: v1.ServiceStatus{},
    	}
    	svcFunc(svc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top