Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 150 for LoadBalancer (0.46 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/api.go

    	Hostname     string         `json:"hostname"`
    	Addresses    []string       `json:"vips"`
    	Ports        map[string]int `json:"ports"`
    	LoadBalancer *LoadBalancer  `json:"loadBalancer"`
    	Waypoint     *Waypoint      `json:"waypoint"`
    }
    
    type PolicyMatch struct {
    	Namespaces          []StringMatch `json:"namespaces,omitempty"`
    	NotNamespaces       []StringMatch `json:"notNamespaces,omitempty"`
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 15:39:28 GMT 2024
    - 4.9K bytes
    - Viewed (0)
  2. helm/minio/templates/console-service.yaml

      type: ClusterIP
      {{- if not (empty .Values.consoleService.clusterIP) }}
      clusterIP: {{ .Values.consoleService.clusterIP }}
      {{- end }}
      {{- else if eq .Values.consoleService.type "LoadBalancer" }}
      type: {{ .Values.consoleService.type }}
      loadBalancerIP: {{ default "" .Values.consoleService.loadBalancerIP }}
      {{- else }}
      type: {{ .Values.consoleService.type }}
      {{- end }}
      ports:
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe_test.go

    						Subsets: []*v1alpha32.Subset{
    							{
    								Name:   "v1",
    								Labels: map[string]string{"version": "v1"},
    							},
    						},
    						TrafficPolicy: &v1alpha32.TrafficPolicy{
    							LoadBalancer: &v1alpha32.LoadBalancerSettings{
    								LbPolicy: &v1alpha32.LoadBalancerSettings_Simple{Simple: v1alpha32.LoadBalancerSettings_LEAST_REQUEST},
    							},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Mar 28 09:54:01 GMT 2024
    - 30.4K bytes
    - Viewed (0)
  4. manifests/charts/gateway/templates/service.yaml

        {{- merge (deepCopy .Values.service.annotations) .Values.annotations | toYaml | nindent 4 }}
    spec:
    {{- with .Values.service.loadBalancerIP }}
      loadBalancerIP: "{{ . }}"
    {{- end }}
    {{- if eq .Values.service.type "LoadBalancer" }}
      {{- if hasKey .Values.service "allocateLoadBalancerNodePorts" }}
      allocateLoadBalancerNodePorts: {{ .Values.service.allocateLoadBalancerNodePorts }}
      {{- end }}
    {{- end }}
    {{- if .Values.service.ipFamilyPolicy }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  5. helm/minio/templates/service.yaml

      type: ClusterIP
      {{- if not (empty .Values.service.clusterIP) }}
      clusterIP: {{ .Values.service.clusterIP }}
      {{- end }}
      {{- else if eq .Values.service.type "LoadBalancer" }}
      type: {{ .Values.service.type }}
      loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }}
      {{- else }}
      type: {{ .Values.service.type }}
      {{- end }}
      ports:
        - name: {{ $scheme }}
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Apr 17 06:04:15 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

      // +optional
      repeated IngressRule rules = 3;
    }
    
    // IngressStatus describes the current state of the Ingress.
    message IngressStatus {
      // loadBalancer contains the current status of the load-balancer.
      // +optional
      optional IngressLoadBalancerStatus loadBalancer = 1;
    }
    
    // IngressTLS describes the transport layer security associated with an Ingress.
    message IngressTLS {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      repeated IngressRule rules = 3;
    }
    
    // IngressStatus describe the current state of the Ingress.
    message IngressStatus {
      // loadBalancer contains the current status of the load-balancer.
      // +optional
      optional IngressLoadBalancerStatus loadBalancer = 1;
    }
    
    // IngressTLS describes the transport layer security associated with an ingress.
    message IngressTLS {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  8. helm/minio/templates/NOTES.txt

      3. mc ls {{ template "minio.fullname" . }}-local
    
    {{- end }}
    {{- if eq .Values.service.type "LoadBalancer" }}
    MinIO can be accessed via port {{ .Values.service.port }} on an external IP address. Get the service external IP address by:
    kubectl get svc --namespace {{ .Release.Namespace }} -l app={{ template "minio.fullname" . }}
    
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  9. docs/zh/docs/advanced/behind-a-proxy.md

          service = "app"
          rule = "PathPrefix(`/api/v1`)"
          middlewares = ["api-stripprefix"]
    
      [http.services]
    
        [http.services.app]
          [http.services.app.loadBalancer]
            [[http.services.app.loadBalancer.servers]]
              url = "http://127.0.0.1:8000"
    ```
    
    这个文件配置 Traefik 使用路径前缀 `/api/v1`。
    
    然后,它把请求重定位到运行在 `http://127.0.0.1:8000` 上的 Uvicorn。
    
    现在,启动 Traefik:
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      optional string apiVersion = 3;
    }
    
    // ExternalMetricSource indicates how to scale on a metric not associated with
    // any Kubernetes object (for example length of queue in cloud
    // messaging service, or QPS from loadbalancer running outside of cluster).
    message ExternalMetricSource {
      // metric identifies the target metric by name and selector
      optional MetricIdentifier metric = 1;
    
      // target specifies the target value for the given metric
    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)
Back to top