Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 257 for nameslice (0.3 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	podName := util.GetUniquePodName(pod)
    
    	//let the pod be terminated
    	podGet, exist := dswp.podManager.(mutablePodManager).GetPodByName(pod.Namespace, pod.Name)
    	if !exist {
    		t.Fatalf("Failed to get pod by pod name: %s and namespace: %s", pod.Name, pod.Namespace)
    	}
    	podGet.Status.Phase = v1.PodFailed
    	dswp.podManager.(mutablePodManager).RemovePod(pod)
    
    	dswp.findAndRemoveDeletedPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                      and created in the same namespace as the MetalLB deployment. The
                      password is stored in the secret as the key "password".
                    properties:
                      name:
                        description: name is unique within a namespace to reference a
                          secret resource.
                        type: string
                      namespace:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/httproute_test.go

    	}
    }
    
    func buildHTTPServiceWithLabels(hostname string, v visibility.Instance, ip, namespace string, labels map[string]string, ports ...int) *model.Service {
    	svc := buildHTTPService(hostname, v, ip, namespace, ports...)
    	svc.Attributes.Labels = labels
    	return svc
    }
    
    func buildHTTPService(hostname string, v visibility.Instance, ip, namespace string, ports ...int) *model.Service {
    	service := &model.Service{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    			expectedIP: "",
    		},
    		{
    			name: "no status object",
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "pod1"},
    				Spec:       api.PodSpec{},
    			},
    			expectedIP: "",
    		},
    		{
    			name: "no pod ips",
    			pod: &api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Namespace: "ns", Name: "pod1"},
    				Spec:       api.PodSpec{},
    				Status:     api.PodStatus{},
    			},
    			expectedIP: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    istio-1-7-6 name: config-volume --- apiVersion: policy/v1beta1 kind: PodDisruptionBudget metadata: name: istiod-1-7-6 namespace: istio-system labels: app: istiod istio.io/rev: 1-7-6 release: istio istio: pilot spec: minAvailable: 1 selector: matchLabels: app: istiod istio.io/rev: 1-7-6 --- apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutosca metadata: name: istiod-1-7-6 namespace: istio-system labels: app: istiod release: istio istio.io/rev: 1-7-6 spec: maxReplicas: 5 minReplicas: 1 scaleTargetRef:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    apiVersion: autoscaling/v2beta1 kind: HorizontalPodAutosca metadata: name: istiod-1-6-11 namespace: istio-system labels: app: istiod release: istio istio.io/rev: 1-6-11 spec: maxReplicas: 5 minReplicas: 1 scaleTargetRef: apiVersion: apps/v1 kind: Deployment name: istiod-1-6-11 metrics: - type: Resource resource: name: cpu targetAverageUtiliza: 80 --- apiVersion: v1 kind: ConfigMap metadata: name: istio-1-6-11 namespace: istio-system labels: istio.io/rev: 1-6-11 release: istio data: # Configuration file...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission_test.go

    			}
    			for _, c := range ret {
    				if c.Namespace != attributesTest1.GetNamespace() {
    					t.Errorf("Expected %s namespace, got %s", attributesTest1.GetNamespace(), c.Namespace)
    				}
    			}
    		}()
    	}
    
    	// and here we wait for all the goroutines
    	wg.Wait()
    	// since all the calls with the same namespace will be holded, they must be catched on the singleflight group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		Spec: &extensions.WasmPlugin{
    			Phase: extensions.PluginPhase_STATS,
    		},
    	},
    	{
    		Meta: config.Meta{Name: uuid.NewString(), Namespace: "istio-system", GroupVersionKind: gvk.AuthorizationPolicy},
    		Spec: &security.AuthorizationPolicy{},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	//  |         - foo
    	barFirst := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "first", Name: "bar"}}
    	barSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "bar"}}
    	fooSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "foo"}}
    	bazSecond := &example.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "second", Name: "baz"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    istio-sidecar-injector-1-10-0 labels: istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" app: sidecar-injector release: istio webhooks: - name: rev.namespace.sidecar-injector.istio.io clientConfig: service: name: istiod-1-10-0 namespace: istio-system path: "/inject" port: 443 caBundle: "" sideEffects: None rules: - operations: [ "CREATE" ] apiGroups: [""] apiVersions: ["v1"] resources: ["pods"] failurePolicy: Fail admissionReviewVersi: ["v1beta1",...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
Back to top