Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 315 for Mesh (0.08 sec)

  1. security/pkg/pki/ra/k8s_ra_test.go

    		expectedFailOnUpdatedRootCert bool
    	}{
    		{
    			name:                  "Root cert from mesh config and cert chain does not match",
    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "root-cert.pem"),
    			certChain:             mismatchCertChainFile,
    			expectedFail:          true,
    		},
    		{
    			name:                  "Root cert is specified in mesh config and Root cert from cert chain is empty(only one leaf cert)",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. tests/integration/telemetry/testdata/istio-mtls-vs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: direct-cnn-through-egress-gateway
    spec:
      hosts:
      - fake.external.com
      gateways:
      - istio-egressgateway
      - mesh
      tls:
      - match:
        - gateways:
          - mesh
          port: 443
          sniHosts:
          - fake.external.com
        route:
        - destination:
            host: istio-egressgateway.istio-system.svc.cluster.local
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 644 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/fake.go

    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/mesh"
    	kubelib "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

    kind: VirtualService
    metadata:
      name: route-via-egressgateway
      namespace: {{ .From.NamespaceName }}
    spec:
      hosts:
        - "www.company.com"
      gateways:
        - test-egress
        - mesh
      http:
        - match:
            - gateways:
                - mesh
              port: 80
          route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.MeshConfigFile, "meshConfig", "./etc/istio/config/mesh",
    		"File name for Istio mesh configuration. If not specified, a default mesh will be used.")
    	c.PersistentFlags().StringVar(&serverArgs.NetworksConfigFile, "networksConfig", "./etc/istio/config/meshNetworks",
    		"File name for Istio mesh networks configuration. If not specified, a default mesh networks will be used.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    	apNs := r.Metadata.FullName.Namespace.String()
    
    	// If AuthzPolicy is mesh-wide
    	if meshWidePolicy(apNs, c) {
    		// If it has selector, need further analysis
    		if ap.GetSelector() != nil {
    			apSelector := klabels.SelectorFromSet(ap.GetSelector().MatchLabels)
    			// If there is at least one pod matching the selector within the whole mesh
    			if !hasMatchingPodsRunning(apSelector, podLabelsMap) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top