Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for commands (0.28 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    		},
    	}
    	waypointListCmd.PersistentFlags().BoolVarP(&allNamespaces, "all-namespaces", "A", false, "List all waypoints in all namespaces")
    
    	waypointCmd := &cobra.Command{
    		Use:   "waypoint",
    		Short: "Manage waypoint configuration",
    		Long:  "A group of commands used to manage waypoint configuration",
    		Example: `  # Apply a waypoint to the current namespace
      istioctl x waypoint apply
    
      # Generate a waypoint as yaml
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 19:45:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  2. cni/pkg/iptables/iptables.go

    			execErrs = append(execErrs, cfg.executeIptablesRestoreCommand(iptablesBuilder, &cfg.ipt6V, false))
    		}
    	} else {
    		// Execute iptables commands
    		execErrs = append(execErrs,
    			cfg.executeIptablesCommands(&cfg.iptV, iptablesBuilder.BuildV4()))
    		// Execute ip6tables commands
    		if cfg.cfg.EnableIPv6 {
    			execErrs = append(execErrs,
    				cfg.executeIptablesCommands(&cfg.ipt6V, iptablesBuilder.BuildV6()))
    		}
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue May 07 19:54:50 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  3. cni/README.md

            - 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.
            - If so, calls `istio-iptables` with params to setup pod netns
            - If ambient, sets up the ambient logic.
    
    - `istio-iptables`
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri May 03 19:29:42 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  4. Makefile.core.mk

    # Output control
    #-----------------------------------------------------------------------------
    # Invoke make VERBOSE=1 to enable echoing of the command being executed
    export VERBOSE ?= 0
    # Place the variable Q in front of a command to control echoing of the command being executed.
    Q = $(if $(filter 1,$VERBOSE),,@)
    # Use the variable H to add a header (equivalent to =>) to informational output
    H = $(shell printf "\033[34;1m=>\033[0m")
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 20:25:15 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/templates/daemonset.yaml

                  - SYS_ADMIN
    {{- if .Values.cni.seccompProfile }}
                seccompProfile:
    {{ toYaml .Values.cni.seccompProfile | trim | indent 14 }}
    {{- end }}
              command: ["install-cni"]
              args:
                {{- if .Values.global.logging.level }}
                - --log_output_level={{ .Values.global.logging.level }}
                {{- end}}
                {{- if .Values.global.logAsJson }}
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri May 03 19:29:42 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top