Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 673 for pivots (0.11 sec)

  1. pilot/pkg/xds/discovery.go

    	"github.com/google/uuid"
    	"go.uber.org/atomic"
    	"golang.org/x/time/rate"
    	"google.golang.org/grpc"
    
    	"istio.io/istio/pilot/pkg/autoregistration"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/envoyfilter"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/security"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/controller.go

    // the 'ingress service' name is used to get the IP of the Service
    // If ingress service is empty, it falls back to NodeExternalIP list, selected using the labels.
    // This is using 'namespace' of pilot - but seems to be broken (never worked), since it uses Pilot's pod labels
    // instead of the ingress labels.
    
    // Follows mesh.IngressControllerMode setting to enable - OFF|STRICT|DEFAULT.
    // STRICT requires "kubernetes.io/ingress.class" == mesh.IngressClass
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- end }}
          containers:
            - name: discovery
    {{- if contains "/" .Values.pilot.image }}
              image: "{{ .Values.pilot.image }}"
    {{- else }}
              image: "{{ .Values.pilot.hub | default .Values.global.hub }}/{{ .Values.pilot.image | default "pilot" }}:{{ .Values.pilot.tag | default .Values.global.tag }}{{with (.Values.pilot.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

      {{- if .Values.pilot.memory.targetAverageUtilization }}
      - type: Resource
        resource:
          name: memory
          target:
            type: Utilization
            averageUtilization: {{ .Values.pilot.memory.targetAverageUtilization }}
      {{- end }}
      {{- if .Values.pilot.autoscaleBehavior }}
      behavior: {{ toYaml .Values.pilot.autoscaleBehavior | nindent 4 }}
      {{- end }}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/runtime/mranges.go

    func (a *addrRanges) removeGreaterEqual(addr uintptr) {
    	pivot := a.findSucc(addr)
    	if pivot == 0 {
    		// addr is before all ranges in a.
    		a.totalBytes = 0
    		a.ranges = a.ranges[:0]
    		return
    	}
    	removed := uintptr(0)
    	for _, r := range a.ranges[pivot:] {
    		removed += r.size()
    	}
    	if r := a.ranges[pivot-1]; r.contains(addr) {
    		removed += r.size()
    		r = r.removeGreaterEqual(addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        # This avoids default deployment picking the canary
        istio: pilot
        {{- end }}
      {{- if .Values.pilot.ipFamilyPolicy }}
      ipFamilyPolicy: {{ .Values.pilot.ipFamilyPolicy }}
      {{- end }}
      {{- if .Values.pilot.ipFamilies }}
      ipFamilies:
      {{- range .Values.pilot.ipFamilies }}
      - {{ . }}
      {{- end }}
      {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. CODEOWNERS

    /pilot/pkg/serviceregistry/                                      @istio/wg-networking-maintainers-pilot
    /pilot/pkg/model/                                                @istio/wg-networking-maintainers-pilot
    /pilot/pkg/networking/core                                       @istio/wg-networking-maintainers-pilot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pkg/xds/monitoring.go

    		"Pilot rejected RDS.",
    	)
    
    	totalXDSRejects = monitoring.NewSum(
    		"pilot_total_xds_rejects",
    		"Total number of XDS responses from pilot rejected by proxy.",
    	)
    
    	ResponseWriteTimeouts = monitoring.NewSum(
    		"pilot_xds_write_timeout",
    		"Pilot XDS response write timeouts.",
    	)
    
    	sendTime = monitoring.NewDistribution(
    		"pilot_xds_send_time",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
  10. pilot/docker/Dockerfile.proxyv2

    ENV ISTIO_META_ISTIO_PROXY_SHA $proxy_version
    
    ARG TARGETARCH
    COPY ${TARGETARCH:-amd64}/pilot-agent /usr/local/bin/pilot-agent
    
    # The pilot-agent will bootstrap Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top