Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cmdPwd (0.06 sec)

  1. cni/pkg/plugin/plugin.go

    		}
    	}
    	return loggingOptions
    }
    
    // CmdAdd is called for ADD requests
    func CmdAdd(args *skel.CmdArgs) (err error) {
    	// Defer a panic recover, so that in case if panic we can still return
    	// a proper error to the runtime.
    	defer func() {
    		if e := recover(); e != nil {
    			msg := fmt.Sprintf("istio-cni panicked during cmdAdd: %v\n%v", e, string(debug.Stack()))
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. cni/README.md

    - `istio-cni`
        - CNI plugin executable copied to `/opt/cni/bin`
        - currently implemented for k8s only
        - on pod add, determines whether pod should have netns setup to redirect to Istio proxy. See [cmdAdd](#cmdadd-workflow) for detailed logic.
            - it connects to K8S using the kubeconfig and JWT token copied from install-cni to get Pod and Namespace. Since this is a short-running command, each invocation creates a new connection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    		bug.CmdBug,
    		work.CmdBuild,
    		clean.CmdClean,
    		doc.CmdDoc,
    		envcmd.CmdEnv,
    		fix.CmdFix,
    		fmtcmd.CmdFmt,
    		generate.CmdGenerate,
    		modget.CmdGet,
    		work.CmdInstall,
    		list.CmdList,
    		modcmd.CmdMod,
    		workcmd.CmdWork,
    		run.CmdRun,
    		telemetrycmd.CmdTelemetry,
    		test.CmdTest,
    		tool.CmdTool,
    		version.CmdVersion,
    		vet.CmdVet,
    
    		help.HelpBuildConstraint,
    		help.HelpBuildmode,
    		help.HelpC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top