Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,582 for tproxy (0.11 sec)

  1. pkg/envoy/proxy.go

    	Concurrency   int32
    
    	// For unit testing, in combination with NoEnvoy prevents agent.Run from blocking
    	TestOnly    bool
    	AgentIsRoot bool
    }
    
    // NewProxy creates an instance of the proxy control commands
    func NewProxy(cfg ProxyConfig) Proxy {
    	// inject tracing flag for higher levels
    	var args []string
    	logLevel, componentLogs := splitComponentLog(cfg.LogLevel)
    	if logLevel != "" {
    		args = append(args, "-l", logLevel)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"net"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    	"time"
    
    	"k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    Because we have a proxy with a path prefix of `/api/v1` for our app, the frontend needs to fetch the OpenAPI schema at `/api/v1/openapi.json`.
    
    ```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
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/behind-a-proxy.md

    Da wir für unsere Anwendung einen Proxy mit dem Pfadpräfix `/api/v1` haben, muss das Frontend das OpenAPI-Schema unter `/api/v1/openapi.json` abrufen.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy auf http://0.0.0.0:9999/api/v1/app"]
    server["Server auf http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. cluster/gce/manifests/kube-proxy.manifest

    # Please keep kube-proxy configuration in-sync with:
    # cluster/addons/kube-proxy/kube-proxy-ds.yaml
    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-proxy
      namespace: kube-system
      labels:
        tier: node
        component: kube-proxy
    spec:
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      tolerations:
      - operator: "Exists"
        effect: "NoExecute"
      - operator: "Exists"
        effect: "NoSchedule"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                - "15090,15021,{{ excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}"
              {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. cmd/kube-proxy/proxy.go

    	_ "k8s.io/component-base/metrics/prometheus/clientgo" // for client metric registration
    	_ "k8s.io/component-base/metrics/prometheus/version"  // for version metric registration
    	"k8s.io/kubernetes/cmd/kube-proxy/app"
    )
    
    func main() {
    	command := app.NewProxyCommand()
    	code := cli.Run(command)
    	os.Exit(code)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 989 bytes
    - Viewed (0)
  8. 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)
  9. pkg/kube/inject/testdata/inject/proxy-override.yaml

            - my
            - custom
            - args
            image: fake/custom-image
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
            - name: istio-proxy
              image: auto
              resources:
                requests:
                  cpu: 123m
                limits:
                  cpu: 3000m
              livenessProbe:
                failureThreshold: 30
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 19:52:06 UTC 2023
    - 1.4K bytes
    - Viewed (1)
  10. pkg/kube/inject/testdata/inject/proxy-override.yaml.injected

            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top