Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 554 for pivots (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/xds/rds_test.go

    // limitations under the License.
    package xds_test
    
    import (
    	"fmt"
    	"testing"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    )
    
    func TestRDS(t *testing.T) {
    	tests := []struct {
    		name   string
    		node   string
    		routes []string
    	}{
    		{
    			"sidecar_new",
    			sidecarID(app3Ip, "app3"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. pilot/pkg/features/telemetry.go

    		return f
    	}()
    
    	EnableTelemetryLabel = env.Register("PILOT_ENABLE_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to cluster and endpoint resources, which will be consumed by telemetry filter.",
    	).Get()
    
    	EndpointTelemetryLabel = env.Register("PILOT_ENDPOINT_TELEMETRY_LABEL", true,
    		"If true, pilot will add telemetry related metadata to Endpoint resource, which will be consumed by telemetry filter.",
    	).Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. tests/fuzz/config_validation_fuzzer.go

    )
    
    func FuzzConfigValidation(data []byte) int {
    	f := fuzz.NewConsumer(data)
    	configIndex, err := f.GetInt()
    	if err != nil {
    		return -1
    	}
    
    	r := collections.Pilot.All()[configIndex%len(collections.Pilot.All())]
    	gvk := r.GroupVersionKind()
    	kgvk := schema.GroupVersionKind{
    		Group:   gvk.Group,
    		Version: gvk.Version,
    		Kind:    gvk.Kind,
    	}
    	object, err := kube.IstioScheme.New(kgvk)
    	if err != nil {
    		return 0
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top