Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 566 for Mesh (0.04 sec)

  1. pilot/pkg/xds/pcds.go

    // limitations under the License.
    
    package xds
    
    import (
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	tb "istio.io/istio/pilot/pkg/trustbundle"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    	"github.com/google/uuid"
    	uberatomic "go.uber.org/atomic"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/codes"
    	"google.golang.org/grpc/status"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/xds"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: mesh-route-outbound-traffic-to-external-svc-via-egress-gw
    spec:
      hosts:
      - external.{{ .externalNamespace }}.svc.cluster.local
      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/waypoint.yaml

    metadata:
      name: namespace
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
        protocol: HBONE
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:29 UTC 2023
    - 418 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	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"
    	"istio.io/istio/pkg/test"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pkg/envoy/proxy_test.go

    package envoy
    
    import (
    	"reflect"
    	"testing"
    
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/model"
    )
    
    func TestEnvoyArgs(t *testing.T) {
    	proxyConfig := (*model.NodeMetaProxyConfig)(mesh.DefaultProxyConfig())
    	proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: "my-cluster"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. istioctl/pkg/util/constants.go

    	DefaultProxyAdminPort = 15000
    
    	// DefaultMeshConfigMapName is the default name of the ConfigMap with the mesh config
    	// The actual name can be different - use getMeshConfigMapName
    	DefaultMeshConfigMapName = "istio"
    
    	// ConfigMapKey should match the expected MeshConfig file name
    	ConfigMapKey = "mesh"
    
    	// ValuesConfigMapKey should match the expected Values file name
    	ValuesConfigMapKey = "values"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tests/testdata/config/rule-default-route.yaml

          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default-route-1
      namespace: testns
    spec:
      hosts:
        - c.foo
      gateways:
      #- mesh # doesnt work
      - my-gateway
      http:
        - match:
          - uri:
               prefix: /bar
          route:
          - destination:
              host: c.foo
            weight: 100
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 964 bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/conversion_test.go

    						},
    					},
    				},
    			}
    
    			mesh := mesh.DefaultMeshConfig()
    			mesh.IngressControllerMode = c.ingressMode
    
    			if c.annotation != "" {
    				ing.Annotations["kubernetes.io/ingress.class"] = c.annotation
    			}
    
    			if c.shouldProcess != shouldProcessIngressWithClass(mesh, &ing, c.ingressClass) {
    				t.Errorf("got %v, want %v",
    					!c.shouldProcess, c.shouldProcess)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  10. tools/packaging/common/gcp_envoy_bootstrap.json

    {
      "node": {
        {{ if (index .metadata.Labels "td.networking.gke.io/mesh-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/mesh:{{ (index .metadata.Labels "td.networking.gke.io/mesh-name") }}/nodes/{{ .nodeID}}",
        {{ else if (index .metadata.Labels "td.networking.gke.io/gateway-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/scope:{{ (index .metadata.Labels "td.networking.gke.io/gateway-name") }}/nodes/{{ .nodeID}}",
        {{ else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top