Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 566 for Mesh (0.04 sec)

  1. pilot/pkg/model/context.go

    	ServiceDiscovery
    
    	// Config interface for listing routing rules
    	ConfigStore
    
    	// Watcher is the watcher for the mesh config (to be merged into the config store)
    	mesh.Watcher
    
    	// NetworksWatcher (loaded from a config map) provides information about the
    	// set of networks inside a mesh and how to route to endpoints in each
    	// network. Each network provides information about the endpoints in a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  2. pilot/pkg/trustbundle/trustbundle.go

    // limitations under the License.
    
    package trustbundle
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"fmt"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Source is all possible sources of MeshConfig
    type Source int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // ConflictingMeshGatewayHostsAnalyzer checks if multiple virtual services
    // associated with the mesh gateway have conflicting hosts. The behavior is
    // undefined if conflicts exist.
    type ConflictingMeshGatewayHostsAnalyzer struct{}
    
    var _ analysis.Analyzer = &ConflictingMeshGatewayHostsAnalyzer{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/telemetry-invalid-provider.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
          - name: envoy
        - filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 04 14:56:01 UTC 2022
    - 230 bytes
    - Viewed (0)
  5. tools/packaging/postinst.sh

    mkdir -p /var/lib/istio/proxy
    mkdir -p /var/lib/istio/config
    mkdir -p /var/log/istio
    
    touch /var/lib/istio/config/mesh
    
    mkdir -p /etc/certs
    chown istio-proxy.istio-proxy /etc/certs
    
    chown istio-proxy.istio-proxy /var/lib/istio/envoy /var/lib/istio/config /var/log/istio /var/lib/istio/config/mesh /var/lib/istio/proxy
    chmod o+rx /usr/local/bin/{envoy,pilot-agent}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. releasenotes/notes/38801.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Added** support for configuring internal addresses of mesh. This can be enabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 18 17:28:43 UTC 2022
    - 228 bytes
    - Viewed (0)
  7. samples/ambient-argo/application/details-waypoint.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      labels:
        istio.io/rev: stable
      name: bookinfo-details
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 234 bytes
    - Viewed (0)
  8. releasenotes/notes/36499.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36499
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 16 22:07:53 UTC 2021
    - 224 bytes
    - Viewed (0)
  9. pilot/pkg/networking/plugin/authz/authorization.go

    }
    
    func NewBuilderForService(actionType ActionType, push *model.PushContext, proxy *model.Proxy, useFilterState bool, svc *model.Service) *Builder {
    	tdBundle := trustdomain.NewBundle(push.Mesh.TrustDomain, push.Mesh.TrustDomainAliases)
    	option := builder.Option{
    		IsCustomBuilder: actionType == Custom,
    		UseFilterState:  useFilterState,
    		UseExtendedJwt:  proxy.SupportsEnvoyExtendedJwt(),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	ProxyConfigs *ProxyConfigs `json:"-"`
    
    	// The following data is either a global index or used in the inbound path.
    	// Namespace specific views do not apply here.
    
    	// Mesh configuration for the mesh.
    	Mesh *meshconfig.MeshConfig `json:"-"`
    
    	// PushVersion describes the push version this push context was computed for
    	PushVersion string
    
    	// LedgerVersion is the version of the configuration ledger
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top