Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,086 for nameslice (0.32 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1.VolumeAttachment.yaml

            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
          csi:
            controllerExpandSecretRef:
              name: nameValue
              namespace: namespaceValue
            controllerPublishSecretRef:
              name: nameValue
              namespace: namespaceValue
            driver: driverValue
            fsType: fsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            kind: kindValue
            name: nameValue
            namespace: namespaceValue
            resourceVersion: resourceVersionValue
            uid: uidValue
          csi:
            controllerExpandSecretRef:
              name: nameValue
              namespace: namespaceValue
            controllerPublishSecretRef:
              name: nameValue
              namespace: namespaceValue
            driver: driverValue
            fsType: fsTypeValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/content/content.go

    	out := *p
    	out.Verbose = verbose
    	return &out
    }
    
    func (p *Params) SetNamespace(namespace string) *Params {
    	out := *p
    	out.Namespace = namespace
    	return &out
    }
    
    func (p *Params) SetIstioNamespace(namespace string) *Params {
    	out := *p
    	out.IstioNamespace = namespace
    	return &out
    }
    
    func (p *Params) SetPod(pod string) *Params {
    	out := *p
    	out.Pod = pod
    	return &out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    // Logs returns the logs for the given namespace/pod/container.
    func (r *Runner) Logs(namespace, pod, container string, previous, dryRun bool) (string, error) {
    	if dryRun {
    		return fmt.Sprintf("Dry run: would be running client.PodLogs(%s, %s, %s)", pod, namespace, container), nil
    	}
    	// ignore cancellation errors since this is subject to global timeout.
    	task := fmt.Sprintf("PodLogs %s/%s/%s", namespace, pod, container)
    	r.addRunningTask(task)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/http.yaml

        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: http
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get
          headers:
          - name: my-header
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/injection.go

    var _ jobControlInterface = &realJobControl{}
    
    func (r realJobControl) GetJob(namespace, name string) (*batchv1.Job, error) {
    	return r.KubeClient.BatchV1().Jobs(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (r realJobControl) CreateJob(namespace string, job *batchv1.Job) (*batchv1.Job, error) {
    	return r.KubeClient.BatchV1().Jobs(namespace).Create(context.TODO(), job, metav1.CreateOptions{})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 09:37:31 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/proxy/config/api_test.go

    		ObjectMeta: metav1.ObjectMeta{Namespace: "testnamespace", Name: "foo"},
    	}
    	eps2 := &discoveryv1.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "testnamespace", Name: "bar"},
    	}
    
    	expectedSvcState := map[types.NamespacedName]*v1.Service{
    		{Name: svc1.Name, Namespace: svc1.Namespace}: svc1,
    		{Name: svc2.Name, Namespace: svc2.Namespace}: svc2,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/cleanup.sh

    # only ask if in interactive mode
    if [[ -t 0 && -z ${NAMESPACE} ]];then
      echo -n "namespace ? [default] "
      read -r NAMESPACE
    fi
    
    # verify if the namespace exists, otherwise use default namespace
    if [[ -n ${NAMESPACE} ]];then
      ns=$(kubectl get namespace "${NAMESPACE}" --no-headers --output=go-template="{{.metadata.name}}" 2>/dev/null)
      if [[ -z ${ns} ]];then
        echo "NAMESPACE ${NAMESPACE} not found."
        NAMESPACE=default
      fi
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/util_test.go

    		{Namespace: "default", Name: "se-3"}: {},
    	}
    	currSes := map[types.NamespacedName]*config.Config{
    		{Namespace: "default", Name: "se-2"}: {},
    		{Namespace: "default", Name: "se-4"}: {},
    		{Namespace: "default", Name: "se-5"}: {},
    	}
    
    	expectedUnselected := map[types.NamespacedName]*config.Config{
    		{Namespace: "default", Name: "se-1"}: {},
    		{Namespace: "default", Name: "se-3"}: {},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 17 22:32:10 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top