Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for pdName (0.15 sec)

  1. pilot/pkg/bootstrap/servicecontroller.go

    	args.RegistryOptions.KubeOptions.SystemNamespace = args.Namespace
    	args.RegistryOptions.KubeOptions.MeshServiceController = s.ServiceController()
    	// pass namespace to k8s service registry
    	kubecontroller.NewMulticluster(args.PodName,
    		s.kubeClient.Kube(),
    		args.RegistryOptions.ClusterRegistriesNamespace,
    		args.RegistryOptions.KubeOptions,
    		s.serviceEntryController,
    		s.configController,
    		s.istiodCertBundleWatcher,
    		args.Revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pkg/volume/nfs/nfs.go

    	}}, nil
    }
    
    // Recycle recycles/scrubs clean an NFS volume.
    // Recycle blocks until the pod has completed or any error occurs.
    func (plugin *nfsPlugin) Recycle(pvName string, spec *volume.Spec, eventRecorder recyclerclient.RecycleEventRecorder) error {
    	if spec.PersistentVolume == nil || spec.PersistentVolume.Spec.NFS == nil {
    		return fmt.Errorf("spec.PersistentVolumeSource.NFS is nil")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pilot/pkg/xds/xdsgen.go

    	// The Pod Name (instance identity) is in PilotArgs, but not reachable globally nor from DiscoveryServer
    	podName := env.Register("POD_NAME", "", "").Get()
    	byVersion, err := json.Marshal(IstioControlPlaneInstance{
    		Component: "istiod",
    		ID:        podName,
    		Info:      istioversion.Info,
    	})
    	if err != nil {
    		log.Warnf("XDS: Could not serialize control plane id: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. istioctl/pkg/proxystatus/proxystatus_test.go

    			args:          strings.Split("deployment/random-gibberish.bogus", " "),
    			wantException: true,
    		},
    		{ // case 5: supplying nonexistent pod name should result in error
    			args:          strings.Split("random-gibberish-podname-61789237418234", " "),
    			wantException: true,
    		},
    		{ // case 6: new --revision argument
    			args:           strings.Split("--revision canary", " "),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    			for _, w := range i.WorkloadsOrFail(t) {
    				w := w
    				for k, v := range values {
    					// can we rely on printenv being in the container once distroless is default?
    					out, _, err := i.Config().Cluster.PodExec(w.PodName(), i.Config().Namespace.Name(),
    						"istio-proxy", fmt.Sprintf("printenv %s", k))
    					out = strings.TrimSuffix(out, "\n")
    					if err != nil {
    						return fmt.Errorf("could not exec into pod: %v", err)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tests/integration/pilot/vm_test.go

    			})
    		})
    }
    
    func disconnectProxy(t framework.TestContext, pilot string, instance echo.Instance) {
    	proxyID := strings.Join([]string{instance.WorkloadsOrFail(t)[0].PodName(), instance.Config().Namespace.Name()}, ".")
    	cmd := "pilot-discovery request GET /debug/force_disconnect?proxyID=" + proxyID
    	stdOut, _, err := t.Clusters().Default().
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    	Devno uint32
    	_     [4]byte
    }
    
    type W_Mntent struct {
    	Fstype       uint32
    	Mode         uint32
    	Dev          uint32
    	Parentdev    uint32
    	Rootino      uint32
    	Status       byte
    	Ddname       [9]byte
    	Fstname      [9]byte
    	Fsname       [45]byte
    	Pathlen      uint32
    	Mountpoint   [1024]byte
    	Jobname      [8]byte
    	PID          int32
    	Parmoffset   int32
    	Parmlen      int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/plugin.go

    		flexVolume: &flexVolume{
    			driverName:            sourceDriver,
    			execPath:              plugin.getExecutable(),
    			mounter:               mounter,
    			plugin:                plugin,
    			podName:               pod.Name,
    			podUID:                pod.UID,
    			podNamespace:          pod.Namespace,
    			podServiceAccountName: pod.Spec.ServiceAccountName,
    			volName:               spec.Name(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top