Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for pdName (0.29 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/status/distribution/reporter_test.go

    	Expect(r.reverseStatus).To(Equal(map[string]sets.String{"a": {"conB~": x}, "c": {"conC~": x}, "d": {"conD~": x}}))
    }
    
    func initReporterWithoutStarting() (out Reporter) {
    	out.PodName = "tespod"
    	out.inProgressResources = map[string]*inProgressEntry{}
    	out.client = nil              // TODO
    	out.clock = clock.RealClock{} // TODO
    	out.UpdateInterval = 300 * time.Millisecond
    	out.cm = nil // TODO
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. cni/pkg/plugin/cnieventclient_test.go

    		defer req.Body.Close()
    		data, err := io.ReadAll(req.Body)
    		assert.NoError(t, err)
    
    		var msg nodeagent.CNIPluginAddEvent
    		err = json.Unmarshal(data, &msg)
    		assert.NoError(t, err)
    		assert.Equal(t, msg.PodName, testPod)
    		assert.Equal(t, msg.PodNamespace, testNS)
    		assert.Equal(t, msg.Netns, fakeCmdArgs.Netns)
    		res.WriteHeader(http.StatusOK)
    		res.Write([]byte("server happy"))
    	}))
    	defer func() { testServer.Close() }()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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