Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 800 for cluster1 (0.25 sec)

  1. pkg/kube/multicluster/component.go

    	comp := m.constructor(cluster)
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	m.clusters[cluster.ID] = comp
    	return comp
    }
    
    func (m *Component[T]) clusterUpdated(cluster *Cluster) ComponentConstraint {
    	// Build outside of the lock, in case its slow
    	comp := m.constructor(cluster)
    	old, f := m.clusters[cluster.ID]
    	m.mu.Lock()
    	m.clusters[cluster.ID] = comp
    	m.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/analysis/analysis_test.go

    spec:
      gateways: [missing-gw]
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
    `).ApplyOrFail(t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Clusters().Default()})
    			istioCtl.InvokeOrFail(t, []string{"x", "wait", "-v", "VirtualService", "reviews." + ns.Name()})
    		})
    }
    
    func TestAnalysisWritesStatus(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cluster-iam.go

    	syncSuccessesMD                          = NewCounterMD(syncSuccesses, "Number of successful IAM data syncs since server start.")
    )
    
    // loadClusterIAMMetrics - `MetricsLoaderFn` for cluster IAM metrics.
    func loadClusterIAMMetrics(_ context.Context, m MetricValues, _ *metricsCache) error {
    	m.Set(lastSyncDurationMillis, float64(atomic.LoadUint64(&globalIAMSys.LastRefreshDurationMilliseconds)))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 02 08:20:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. cmd/metrics-v3-cluster-usage.go

    	usageTotalBytesMD = NewGaugeMD(usageTotalBytes,
    		"Total cluster usage in bytes")
    	usageObjectsCountMD = NewGaugeMD(usageObjectsCount,
    		"Total cluster objects count")
    	usageVersionsCountMD = NewGaugeMD(usageVersionsCount,
    		"Total cluster object versions (including delete markers) count")
    	usageDeleteMarkersCountMD = NewGaugeMD(usageDeleteMarkersCount,
    		"Total cluster delete markers count")
    	usageBucketsCountMD = NewGaugeMD(usageBucketsCount,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. releasenotes/notes/release-channels-remote-cluster.yaml

    issue:
    - https://github.com/istio/enhancements/issues/173
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 19:46:57 UTC 2024
    - 297 bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/echotest/setup.go

    	dstSetupFn     func(t framework.TestContext, to echo.Target) error
    )
    
    // Setup runs the given function in the source deployment context.
    //
    // For example, given apps a, b, and c in 2 clusters,
    // these tests would all run before the context is cleaned up:
    //   - a/to_b/from_cluster-1
    //   - a/to_b/from_cluster-2
    //   - a/to_c/from_cluster-1
    //   - a/to_c/from_cluster-2
    //   - cleanup...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. tools/bug-report/pkg/filter/filter.go

    func GetMatchingPaths(config *config.BugReportConfig, cluster *cluster2.Resources) ([]string, error) {
    	paths, err := getMatchingPathsForSpec(config, cluster)
    	if err != nil {
    		return nil, err
    	}
    	return sets.SortedList(paths), nil
    }
    
    func getMatchingPathsForSpec(config *config.BugReportConfig, cluster *cluster2.Resources) (sets.String, error) {
    	return getMatchingPathsForSpecImpl(config, cluster, cluster.Root, nil, sets.New[string]())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/legacytokentracking/controller.go

    )
    
    // Controller maintains a timestamp value configmap `kube-apiserver-legacy-service-account-token-tracking`
    // in `kube-system` to indicates if the tracking for legacy tokens is enabled in
    // the cluster. For HA clusters, the configmap will be eventually created after
    // all controller instances have enabled the feature. When disabling this
    // feature, existing configmap will be deleted.
    type Controller struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pkg/test/cert/ca/intermediate.go

    		"SystemNamespace": systemNamespace,
    	})
    }
    
    // IntermediateCA is an intermediate CA for a single cluster.
    type Intermediate struct {
    	KeyFile  string
    	ConfFile string
    	CSRFile  string
    	CertFile string
    	Root     Root
    }
    
    // NewIntermediate creates a new intermediate CA for the given cluster.
    func NewIntermediate(workDir, config string, root Root) (Intermediate, error) {
    	ca := Intermediate{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istioctl/kube.go

    // to extract kube context
    type Filenamer interface {
    	Filename() string
    }
    
    func newKube(ctx resource.Context, config Config) (Instance, error) {
    	fn, ok := ctx.Clusters().GetOrDefault(config.Cluster).(Filenamer)
    	if !ok {
    		return nil, fmt.Errorf("cluster does not support fetching kube config")
    	}
    	n := &kubeComponent{
    		config:     config,
    		kubeconfig: fn.Filename(),
    	}
    
    	return n, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top