Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 977 for pivots (0.15 sec)

  1. 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)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

    metadata:
      labels:
        app: istiod
        install.operator.istio.io/owning-resource: unknown
        istio: pilot
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istiod
      namespace: istio-control
    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

    kind: Deployment
    metadata:
      labels:
        app: istiod
        install.operator.istio.io/owning-resource: unknown
        istio: pilot
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istiod
      namespace: istio-control
    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 30%
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/discovery.go

    // limitations under the License.
    
    package bootstrap
    
    import (
    	"net/http"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/apigen"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/networking/grpcgen"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/cluster"
    )
    
    func InitGenerators(
    	s *xds.DiscoveryServer,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

    kind: Deployment
    metadata:
      labels:
        app: istiod
        install.operator.istio.io/owning-resource: unknown
        istio: pilot
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istiod
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `mysql`.
    	EnableMysqlFilter = env.Register(
    		"PILOT_ENABLE_MYSQL_FILTER",
    		false,
    		"EnableMysqlFilter enables injection of `envoy.filters.network.mysql_proxy` in the filter chain.",
    	).Get()
    
    	// EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/templates/collections.go.tmpl

    		{{- end }}
    	{{- end }}
    		Build()
    
    	// Pilot contains only collections used by Pilot.
    	Pilot = collection.NewSchemasBuilder().
    	{{- range .Entries }}
    		{{- if (contains .Resource.Group "istio.io") }}
    		MustAdd({{ .Resource.Identifier }}).
    		{{- end}}
    	{{- end }}
    		Build()
    
    	// pilotGatewayAPI contains only collections used by Pilot, including the full Gateway API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tools/docker.yaml

      base: true
    
    # Production images
    - name: proxyv2
      dockerfile: pilot/docker/Dockerfile.proxyv2
      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tools/packaging/common/gcp_envoy_bootstrap.json
      - ${TARGET_OUT_LINUX}/${RELEASE_MODE}/${SIDECAR}
      targets:
      - ${TARGET_OUT_LINUX}/pilot-agent
    - name: pilot
      dockerfile: pilot/docker/Dockerfile.pilot
      files:
      - tools/packaging/common/envoy_bootstrap.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/configcontroller.go

    	"istio.io/istio/pilot/pkg/autoregistration"
    	configaggregate "istio.io/istio/pilot/pkg/config/aggregate"
    	"istio.io/istio/pilot/pkg/config/kube/crdclient"
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    	ingress "istio.io/istio/pilot/pkg/config/kube/ingress"
    	"istio.io/istio/pilot/pkg/config/memory"
    	configmonitor "istio.io/istio/pilot/pkg/config/monitor"
    	"istio.io/istio/pilot/pkg/features"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. operator/pkg/translate/translate_common_test.go

    			yamlStr: "",
    			want:    nil,
    		},
    		{
    			desc: "all components disabled",
    			yamlStr: `
    components:
      pilot:
        enabled: false
      ingressGateways:
      - enabled: false`,
    			want: nil,
    		},
    		{
    			desc: "only pilot component enabled",
    			yamlStr: `
    components:
      pilot:
        enabled: true
      ingressGateways:
      - enabled: false`,
    			want: []string{string(name.PilotComponentName)},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 21 22:14:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top