Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 531 for Mesh (0.11 sec)

  1. pkg/config/mesh/watcher.go

    // limitations under the License.
    
    package mesh
    
    import (
    	"reflect"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/filewatcher"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // Holder of a mesh configuration.
    type Holder interface {
    	Mesh() *meshconfig.MeshConfig
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. samples/addons/README.md

    You can use Grafana to monitor the health of Istio and of applications within the service mesh.
    
    This sample provides the following dashboards:
    
    * [Mesh Dashboard](https://grafana.com/grafana/dashboards/7639) provides an overview of all services in the mesh.
    * [Service Dashboard](https://grafana.com/grafana/dashboards/7636) provides a detailed breakdown of metrics for a service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

      gateways:
      - mesh
      http:
      - route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
      namespace: bar
    spec:
      hosts:
      - ratings.foo.svc.cluster.local # should generate an error as mesh gateway is specified and hosts conflict with VirtualService foo/ratings
      - google.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/authentication.go

    	// to UNSET, it will be resolved to the value set by mesh policy if exist (i.e not UNKNOWN), or MTLSPermissive
    	// otherwise.
    	namespaceMutualTLSMode map[string]MutualTLSMode
    
    	// globalMutualTLSMode is the MutualTLSMode corresponding to the mesh-level PeerAuthentication.
    	// This value can be MTLSUnknown, if there is no mesh-level policy.
    	globalMutualTLSMode MutualTLSMode
    
    	rootNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. security/pkg/pki/ra/k8s_ra.go

    // 1. Specified in mesh config
    // 2. Extract from the cert-chain signed by the CSR signer.
    // If no root cert can be found from either of the two sources, error returned.
    // There are several possible situations:
    // 1. root cert is specified in mesh config and is empty in signed cert chain, in this case
    // we verify the signed cert chain against the root cert from mesh config and append the
    // root cert into the cert chain.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    )
    
    func TestPopulateFailoverPriorityLabels(t *testing.T) {
    	tests := []struct {
    		name           string
    		dr             *config.Config
    		mesh           *meshconfig.MeshConfig
    		expectedLabels []byte
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. pkg/dns/server/name_table_test.go

    	wpush := model.NewPushContext()
    	wpush.Mesh = mesh
    	wpush.AddPublicServices([]*model.Service{wildcardService})
    
    	cpush := model.NewPushContext()
    	cpush.Mesh = mesh
    	cpush.AddPublicServices([]*model.Service{cidrService})
    
    	sepush := model.NewPushContext()
    	sepush.Mesh = mesh
    	sepush.AddPublicServices([]*model.Service{headlessServiceForServiceEntry})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_metric_test.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func TestTelemetryMetricsExhaustiveness(t *testing.T) {
    	AssertProvidersHandled(telemetryFilterHandled)
    }
    
    func TestMergeMetrics(t *testing.T) {
    	withoutMetricsProviders := mesh.DefaultMeshConfig()
    	withMetricsProviders := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. pkg/config/mesh/networks_watcher_test.go

    package mesh_test
    
    import (
    	"testing"
    	"time"
    
    	. "github.com/onsi/gomega"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/filewatcher"
    )
    
    func TestNewNetworksWatcherWithBadInputShouldFail(t *testing.T) {
    	g := NewWithT(t)
    	_, err := mesh.NewNetworksWatcher(filewatcher.NewWatcher(), "")
    	g.Expect(err).ToNot(BeNil())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. pilot/pkg/networking/plugin/authn/util_test.go

    package authn
    
    import (
    	"reflect"
    	"testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    )
    
    func TestTrustDomainsForValidation(t *testing.T) {
    	tests := []struct {
    		name       string
    		meshConfig *meshconfig.MeshConfig
    		want       []string
    	}{
    		{
    			name: "No duplicated trust domain in mesh config",
    			meshConfig: &meshconfig.MeshConfig{
    				TrustDomain:        "cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 16:11:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top