Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 532 for proxyv2 (0.29 sec)

  1. docs/zh/docs/advanced/behind-a-proxy.md

    这是因为应用使用了以 `/api/v1` 为路径前缀的代理,前端要从 `/api/v1/openapi.json`  中提取 OpenAPI 概图。
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip "提示"
    
        IP `0.0.0.0` 常用于指程序监听本机或服务器上的所有有效 IP。
    
    API 文档还需要 OpenAPI 概图声明 API `server` 位于 `/api/v1`(使用代理时的 URL)。例如:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. cluster/addons/kube-proxy/kube-proxy-ds.yaml

    # Please keep kube-proxy configuration in-sync with:
    # cluster/saltbase/salt/kube-proxy/kube-proxy.manifest
    
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      labels:
        k8s-app: kube-proxy
        addonmanager.kubernetes.io/mode: Reconcile
      name: kube-proxy
      namespace: kube-system
    spec:
      selector:
        matchLabels:
          k8s-app: kube-proxy
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 01:01:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. istioctl/pkg/internaldebug/internal-debug.go

    		for _, resource := range response.Resources {
    			eString := string(resource.Value)
    			switch {
    			case strings.Contains(eString, "You must provide a proxyID in the query string"):
    				return nil, fmt.Errorf(" You must provide a proxyID in the query string, e.g. [%s]",
    					"edsz?proxyID=istio-ingressgateway")
    
    			case strings.Contains(eString, "404 page not found"):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pilot/pkg/util/network/ip.go

    func AllIPv6(ipAddrs []string) bool {
    	for i := 0; i < len(ipAddrs); i++ {
    		addr, err := netip.ParseAddr(ipAddrs[i])
    		if err != nil {
    			// Should not happen, invalid IP in proxy's IPAddresses slice should have been caught earlier,
    			// skip it to prevent a panic.
    			continue
    		}
    		if addr.Is4() {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. istioctl/pkg/wait/wait.go

    			}
    			return 0, 0, 0, err
    		}
    		printVerbosef(cmd, "sync status: %+v", configVersions)
    		sdcnum += len(configVersions)
    		for _, configVersion := range configVersions {
    			if proxyID != "" && configVersion.ProxyID != proxyID {
    				continue
    			}
    			countVersions(versionCount, configVersion.ClusterVersion)
    			countVersions(versionCount, configVersion.RouteVersion)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    	hostname := "valid-hostname"
    	proxy := "user-etcd-proxy"
    	proxyIP := "10.10.10.100"
    	advertiseIP := "1.2.3.4"
    	cfg := &kubeadmapi.InitConfiguration{
    		LocalAPIEndpoint: kubeadmapi.APIEndpoint{AdvertiseAddress: advertiseIP},
    		ClusterConfiguration: kubeadmapi.ClusterConfiguration{
    			Etcd: kubeadmapi.Etcd{
    				Local: &kubeadmapi.LocalEtcd{
    					PeerCertSANs: []string{
    						proxy,
    						proxyIP,
    						"1.2.3.L",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/proxy-override-args.yaml

          app: hello
      template:
        metadata:
          labels:
            app: hello
        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          - name: istio-proxy
            image: auto
            # Test that we can override a complex field like the command
            args: ["-c", "my-config.yaml"]
            command:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 23:55:05 UTC 2020
    - 471 bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml

          app: hello
      template:
        metadata:
          labels:
            app: hello
        spec:
          containers:
          - name: hello
            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          - name: istio-proxy
            image: auto
            securityContext:
              # iptables rules must honor this value, and must not use 1337
              runAsUser: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 480 bytes
    - Viewed (0)
  9. releasenotes/notes/proxy-stats-inclusion.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 26546
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 15 20:22:21 UTC 2020
    - 159 bytes
    - Viewed (0)
  10. cluster/addons/kube-proxy/kube-proxy-rbac.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: system:kube-proxy
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    subjects:
      - kind: ServiceAccount
        name: kube-proxy
        namespace: kube-system
    roleRef:
      kind: ClusterRole
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 18:46:08 UTC 2019
    - 488 bytes
    - Viewed (0)
Back to top