Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 791 for redirection (0.14 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            prometheus.io/port: "15014"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
            app: istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

            values: [ "https://accounts.google.com" ]
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: sleep
        version: v1
      annotations:
        ambient.istio.io/redirection: enabled
      name: sleep-55bf89f8c9-wzfrh
      namespace: test-ambient
    spec:
      containers:
        - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. fastapi/openapi/docs.py

        </body>
        </html>
        """
        return HTMLResponse(html)
    
    
    def get_swagger_ui_oauth2_redirect_html() -> HTMLResponse:
        """
        Generate the HTML response with the OAuth2 redirection for Swagger UI.
    
        You normally don't need to use or change this.
        """
        # copied from https://github.com/swagger-api/swagger-ui/blob/v4.14.0/dist/oauth2-redirect.html
        html = """
        <!doctype html>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/options.go

    	envoyStatusPortEnv = env.Register("ENVOY_STATUS_PORT", 15021,
    		"Envoy health status port value").Get()
    	envoyPrometheusPortEnv = env.Register("ENVOY_PROMETHEUS_PORT", 15090,
    		"Envoy prometheus redirection port value").Get()
    
    	// Defined by https://github.com/grpc/proposal/blob/c5722a35e71f83f07535c6c7c890cf0c58ec90c0/A27-xds-global-load-balancing.md#xdsclient-and-bootstrap-file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run.go

    	// Create a new chain for redirecting outbound traffic to the common Envoy port.
    	// In both chains, '-j RETURN' bypasses Envoy and '-j ISTIOREDIRECT'
    	// redirects to Envoy.
    	cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    		constants.ISTIOREDIRECT, constants.NAT, "-p", constants.TCP, "-j", constants.REDIRECT, "--to-ports", cfg.cfg.ProxyPort)
    
    	// Use this chain also for redirecting inbound traffic to the common Envoy port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

          }
          set(value) {
            val reason =
              when (value) {
                in 100..199 -> "Informational"
                in 200..299 -> "OK"
                in 300..399 -> "Redirection"
                in 400..499 -> "Client Error"
                in 500..599 -> "Server Error"
                else -> "Mock Response"
              }
            status = "HTTP/1.1 $value $reason"
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 3;
    }
    
    message CNIAmbientConfig {
      // Controls whether ambient redirection is enabled
      google.protobuf.BoolValue enabled = 1;
    
      // The directory path containing the configuration files for Ambient. Defaults to /etc/ambient-config.
      string configDir = 3;
    
      // If enabled, and ambient is enabled, DNS redirection will be enabled.
      google.protobuf.BoolValue dnsCapture = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. fastapi/openapi/utils.py

                "items": {"$ref": REF_PREFIX + "ValidationError"},
            }
        },
    }
    
    status_code_ranges: Dict[str, str] = {
        "1XX": "Information",
        "2XX": "Success",
        "3XX": "Redirection",
        "4XX": "Client Error",
        "5XX": "Server Error",
        "DEFAULT": "Default Response",
    }
    
    
    def get_openapi_security_definitions(
        flat_dependant: Dependant,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    	c.Stdout = stdout
    	c.Stderr = stderr
    	c.Stdin = stdin
    	err := run(c)
    	if len(stdout.String()) != 0 {
    		log.Infof("Command output: \n%v", stdout.String())
    	}
    
    	// TODO Check naming and redirection logic
    	if (err != nil || len(stderr.String()) != 0) && !ignoreErrors {
    		stderrStr := stderr.String()
    
    		// Transform to xtables-specific error messages with more useful and actionable hints.
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_inbound.go

    			virtualInboundFilterChains = append(virtualInboundFilterChains, chains...)
    		}
    	}
    
    	if lb.node.GetInterceptionMode() != model.InterceptionNone {
    		// Prepend virtual inbound, as long as we are using redirection.
    		listeners = append([]*listener.Listener{lb.inboundVirtualListener(virtualInboundFilterChains)}, listeners...)
    	}
    
    	return listeners
    }
    
    // inboundVirtualListener builds the virtual inbound listener.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top