Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for gwon (0.15 sec)

  1. common-protos/k8s.io/api/storage/v1/generated.proto

      // volume AccessModes. In any case, Kubernetes will ensure that the volume is
      // mounted only with a single SELinux context.
      //
      // When "false", Kubernetes won't pass any special SELinux mount options to the driver.
      // This is typical for volumes that represent subdirectories of a bigger shared filesystem.
      //
      // Default is "false".
      //
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                properties:
                  bfdProfile:
                    description: The name of the BFD Profile to be used for the BFD session
                      associated to the BGP session. If not set, the BFD session won't
                      be set up.
                    type: string
                  ebgpMultiHop:
                    description: To set if the BGPPeer is multi-hops away. Needed for
                      FRR mode only.
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
      // not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use
      // a shell, you need to explicitly call out to that shell.
      // Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
      // +optional
      repeated string command = 1;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

      # excluded by default patterns execute `golangci-lint run --help`
      exclude:
        - composite literal uses unkeyed fields
      # Which dirs to exclude: issues from them won't be reported.
      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns.go

    		`(?:[[:^punct:]]+[[:punct:]])*` +
    		// non-punctuation end of string, i.e., the container ID
    		`(?P<containerid>[[:^punct:]]+)$`),
    
    	// This regex applies for container runtimes, that won't put the PodUID into
    	// the cgroup name.
    	// Currently only cri-o in combination with kubeedge is known for this abnormally.
    	regexp.MustCompile(`` +
    		// intentionally empty poduid group
    		`(?P<poduid>)` +
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 11K bytes
    - Viewed (0)
  6. operator/cmd/mesh/install.go

    	}
    	if status.Status != v1alpha1.InstallStatus_HEALTHY {
    		return fmt.Errorf("errors occurred during operation")
    	}
    
    	// Previously we may install IOP file from the old version of istioctl. Now since we won't install IOP file
    	// anymore, and it didn't provide much value, we can delete it if it exists.
    	reconciler.DeleteIOPInClusterIfExists(iop)
    
    	opts.ProgressLog.SetState(progress.StateComplete)
    
    	return nil
    }
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1/generated.proto

      // automatically deleted. When the Job is being deleted, its lifecycle
      // guarantees (e.g. finalizers) will be honored. If this field is unset,
      // the Job won't be automatically deleted. If this field is set to zero,
      // the Job becomes eligible to be deleted immediately after it finishes.
      // +optional
      optional int32 ttlSecondsAfterFinished = 8;
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // volume AccessModes. In any case, Kubernetes will ensure that the volume is
      // mounted only with a single SELinux context.
      //
      // When "false", Kubernetes won't pass any special SELinux mount options to the driver.
      // This is typical for volumes that represent subdirectories of a bigger shared filesystem.
      //
      // Default is "false".
      //
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  9. common/config/.golangci-format.yml

      goimports:
        # put imports beginning with prefix after 3rd-party packages;
        # it's a comma-separated list of prefixes
        local-prefixes: istio.io/
    issues:
      # Which dirs to exclude: issues from them won't be reported.
      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/profile-diff_test.go

    			output, fErr := runCommand(c.args)
    			verifyProfileDiffCommandCaseOutput(t, c, output, fErr)
    		})
    	}
    }
    
    func TestProfileDiffDirect(t *testing.T) {
    	cases := []profileDiffTestcase{
    		{
    			// We won't be parsing with Cobra, but this is the command equivalent
    			args: "profile diff default openshift",
    			// This is just one of the many differences
    			expectedString: "+    profile: openshift",
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 3.6K bytes
    - Viewed (1)
Back to top