Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Accent (0.18 sec)

  1. cni/pkg/iptables/testdata/default.golden

    iptables -t mangle -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp -j ACCEPT
    iptables -t nat -A ISTIO_OUTPUT -d 169.254.7.127 -p tcp -m tcp -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -i lo -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT -p tcp -m tcp --dport 15008 -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15008 --tproxy-mark 0x111/0xfff
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. cni/pkg/plugin/testdata/custom-uid-tproxy.txt.golden

    * mangle
    -N ISTIO_DIVERT
    -N ISTIO_TPROXY
    -N ISTIO_INBOUND
    -A ISTIO_DIVERT -j MARK --set-mark 1337
    -A ISTIO_DIVERT -j ACCEPT
    -A ISTIO_TPROXY ! -d 127.0.0.1/32 -p tcp -j TPROXY --tproxy-mark 1337/0xffffffff --on-port 15006
    -A PREROUTING -p tcp -j ISTIO_INBOUND
    -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
    -A ISTIO_INBOUND -p tcp --dport 15090 -j RETURN
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 26 16:39:28 GMT 2023
    - 2K bytes
    - Viewed (0)
  3. istioctl/pkg/tag/tag.go

    		Example: "istioctl tag list",
    		Aliases: []string{"show"},
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(args) != 0 {
    				return fmt.Errorf("tag list command does not accept arguments")
    			}
    			return nil
    		},
    		RunE: func(cmd *cobra.Command, args []string) error {
    			kubeClient, err := ctx.CLIClient()
    			if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/apps/v1beta2/generated.proto

      // Total number of nodes that should be running the daemon pod and have one
      // or more of the daemon pod running with a Ready Condition by passing the readinessProbe.
      optional int32 numberReady = 4;
    
      // The most recent generation observed by the daemon set controller.
      // +optional
      optional int64 observedGeneration = 5;
    
      // The total number of nodes that are running updated daemon pod
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      type: object
                    type: array
                  inboundConnectionPool:
                    description: Settings controlling the volume of connections Envoy
                      will accept from the network.
                    properties:
                      http:
                        description: HTTP connection pool settings.
                        properties:
                          h2UpgradePolicy:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables.go

    	// CLI: -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    	//
    	// DESC: Anything that's already in conntrack as an established connection, accept
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE,
    		"-p", "tcp",
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 01:42:30 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    	context.AfterFunc(ctx, func() { _ = z.Close() })
    
    	for {
    		log.Debug("accepting conn")
    		conn, err := z.accept()
    		if err != nil {
    			if errors.Is(err, net.ErrClosed) {
    				log.Debug("listener closed - returning")
    				return
    			}
    
    			log.Errorf("failed to accept conn: %v", err)
    			continue
    		}
    		log.Debug("connection accepted")
    		go func() {
    			log.Debug("handling conn")
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 21:47:31 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. bin/update_crds.sh

      # not an official release or release candidate, so get the commit sha
      SHORT_SHA=$(echo "${GATEWAY_VERSION}" | awk -F '-' '{ print $NF }')
      GATEWAY_VERSION=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" "https://api.github.com/repos/kubernetes-sigs/gateway-api/commits/${SHORT_SHA}" | jq -r .sha)
    fi
    if [ -z "${GATEWAY_VERSION}" ]; then
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 14:28:27 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

    }
    
    // HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.
    message HorizontalPodAutoscalerStatus {
      // observedGeneration is the most recent generation observed by this autoscaler.
      // +optional
      optional int64 observedGeneration = 1;
    
      // lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      repeated MetricSpec metrics = 4;
    }
    
    // HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.
    message HorizontalPodAutoscalerStatus {
      // observedGeneration is the most recent generation observed by this autoscaler.
      // +optional
      optional int64 observedGeneration = 1;
    
      // lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods,
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.2K bytes
    - Viewed (0)
Back to top