Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for Mesh (0.38 sec)

  1. operator/pkg/patch/patch_test.go

            ports:
            - containerPort: 443
            - containerPort: 15014
            - containerPort: 9901
            command:
            - /usr/local/bin/galley
            - server
            - --meshConfigFile=/etc/mesh-config/mesh
            - --livenessProbeInterval=1s
            - --validation-webhook-config-file
    `
    
    	tests := []struct {
    		desc    string
    		path    string
    		value   string
    		want    string
    		wantErr string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. pilot/pkg/model/cluster_local_test.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    )
    
    func TestIsClusterLocal(t *testing.T) {
    	cases := []struct {
    		name     string
    		m        *meshconfig.MeshConfig
    		host     string
    		expected bool
    	}{
    		{
    			name:     "kube-system is local",
    			m:        mesh.DefaultMeshConfig(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top