Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 590 for pivots (0.14 sec)

  1. pilot/pkg/bootstrap/servicecontroller.go

    // limitations under the License.
    
    package bootstrap
    
    import (
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	kubecontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/extension_config_builder.go

    package core
    
    import (
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/envoyfilter"
    	"istio.io/istio/pilot/pkg/networking/core/extension"
    	"istio.io/istio/pkg/log"
    )
    
    // BuildExtensionConfiguration returns the list of extension configuration for the given proxy and list of names.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. samples/ambient-argo/tag-chart/templates/shimservice.yaml

    apiVersion: v1
    kind: Service
    metadata:
      labels:
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Pilot"
        app: istiod
        istio: pilot
        release: {{ .Release.Name }}
      name: istiod
      namespace: istio-system
    spec:
      ports:
        - name: grpc-xds
          port: 15010
          protocol: TCP
        - name: https-dns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 712 bytes
    - Viewed (0)
  4. tools/packaging/common/istio-start.sh

          "${ISTIO_BIN_BASE}/pilot-agent" istio-clean-iptables
    
          # Update iptables, based on current config. This is for backward compatibility with the init image mode.
          # The sidecar image can replace the k8s init image, to avoid downloading 2 different images.
          "${ISTIO_BIN_BASE}/pilot-agent" istio-iptables "${@}"
          exit 0
        fi
    
        if [[ ${1-} != "run" ]] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/pilot/status_test.go

    	"google.golang.org/protobuf/types/known/anypb"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/test/util/assert"
    	istioversion "istio.io/istio/pkg/version"
    	"istio.io/istio/tests/util"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/rds.go

    import (
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    // BuildHTTPRoutes supports per-VIP routes, as used by GRPC.
    // This mode is indicated by using names containing full host:port instead of just port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/proxy/proxyinfo.go

    // limitations under the License.
    
    package proxy
    
    import (
    	"context"
    	"encoding/json"
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	istioVersion "istio.io/istio/pkg/version"
    )
    
    type sidecarSyncStatus struct {
    	// nolint: structcheck, unused
    	pilot string
    	xds.SyncStatus
    }
    
    // GetProxyInfo retrieves infos of proxies that connect to the Istio control plane of specific revision.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. releasenotes/notes/47045.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
    - 46652
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 04:35:20 UTC 2023
    - 208 bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/rest"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pilot/pkg/server"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/multicluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    `),
    		},
    		{
    			name: "pilot.k8s.replicaCount is default value set when autoscaleEnabled is true",
    			values: `
    values:
      pilot:
        autoscaleEnabled: true
      gateways:
        istio-ingressgateway:
          autoscaleEnabled: true
        istio-egressgateway:
          autoscaleEnabled: true
    components:
      pilot:
        k8s:
          replicaCount: 1
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top