Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TO (0.14 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    	waypointApplyCmd := &cobra.Command{
    		Use:   "apply",
    		Short: "Apply a waypoint configuration",
    		Long:  "Apply a waypoint configuration to the cluster",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl x waypoint apply
    
      # Apply a waypoint to a specific namespace and wait for it to be ready
      istioctl x waypoint apply --namespace default --wait`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 16:16:40 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. cni/pkg/util/podutil_test.go

    			},
    			want: false,
    		},
    		// TODO: when there exists a means for users to signal the intent to exclude a pod from ambient without requiring the use of
    		// the ambient redirection annotation, this annotation should no longer be checked by this function and this case should return 'true'
    		{
    			name: "pod has label to enable ambient mode and annotation to disable ambient redirection",
    			args: args{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 18:04:40 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  3. cni/pkg/util/podutil.go

    		return false
    	}
    	// TODO: delete this block when there is a way for users to signal the intent to exclude
    	// a pod from ambient that does not require the use of this annotation
    	if pod.Annotations[constants.AmbientRedirection] == constants.AmbientRedirectionDisabled {
    		// Pod explicitly asked to not have redirection enabled
    		return false
    	}
    	return true
    }
    
    func podHasSidecar(pod *corev1.Pod) bool {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 18:04:40 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  4. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	common.attach(cmd)
    	cmd.PersistentFlags().BoolVarP(&reset, "reset", "r", reset, "Reset levels to default value (warning).")
    	cmd.PersistentFlags().StringVar(&loggerLevelString, "level", loggerLevelString,
    		fmt.Sprintf("Comma-separated minimum per-logger level of messages to output, in the form of"+
    			" [<logger>:]<level>,[<logger>:]<level>,... or <level> to change all active loggers, "+
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 13:11:40 GMT 2024
    - 22.2K bytes
    - Viewed (0)
Back to top