Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Mesh (0.2 sec)

  1. pkg/kube/namespace/filter.go

    	namespaces kclient.Client[*corev1.Namespace],
    	mesh mesh.Watcher,
    	stop <-chan struct{},
    ) kubetypes.DynamicObjectFilter {
    	// convert LabelSelectors to Selectors
    	f := &discoveryNamespacesFilter{
    		namespaces:          namespaces,
    		discoveryNamespaces: sets.New[string](),
    	}
    	mesh.AddMeshHandler(func() {
    		f.selectorsChanged(mesh.Mesh().GetDiscoverySelectors(), true)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/server.go

    // limitations under the License.
    
    package sds
    
    import (
    	"net"
    	"time"
    
    	"go.uber.org/atomic"
    	"google.golang.org/grpc"
    
    	mesh "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/uds"
    )
    
    const (
    	maxStreams    = 100000
    	maxRetryTimes = 5
    )
    
    // Server is the gPRC server that exposes SDS through UDS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 17:44:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. manifests/addons/gen.sh

        --from-file=istio-workload-dashboard.json="${TMP}/istio-workload-dashboard.json" \
        --from-file=istio-service-dashboard.json="${TMP}/istio-service-dashboard.json" \
        --from-file=istio-mesh-dashboard.json="${TMP}/istio-mesh-dashboard.json" \
        --from-file=istio-extension-dashboard.json="${TMP}/istio-extension-dashboard.json"
    } > "${ADDONS}/grafana.yaml"
    
    # Set up loki
    {
      helm3 template loki loki \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pilot/pkg/features/telemetry.go

    import (
    	"time"
    
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    )
    
    // Define telemetry related features here.
    var (
    	traceSamplingVar = env.Register(
    		"PILOT_TRACE_SAMPLING",
    		1.0,
    		"Sets the mesh-wide trace sampling percentage. Should be 0.0 - 100.0. Precision to 0.01. "+
    			"Default is 1.0.",
    	)
    
    	TraceSampling = func() float64 {
    		f := traceSamplingVar.Get()
    		if f < 0.0 || f > 100.0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:36:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. prow/release-commit.sh

        git: https://github.com/istio/release-builder
        sha: ${BUILDER_SHA}
      ztunnel:
        git: https://github.com/istio/ztunnel
        auto: deps
    architectures: [linux/amd64, linux/arm64]
    EOD
    )}
    dashboards:
      istio-mesh-dashboard: 7639
      istio-performance-dashboard: 11829
      istio-service-dashboard: 7636
      istio-workload-dashboard: 7630
      pilot-dashboard: 7645
      istio-extension-dashboard: 13277
      ztunnel-dashboard: 21306
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:28 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top