Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 308 for components (0.17 sec)

  1. pkg/kube/multicluster/secretcontroller_test.go

    	components := c.component.All()
    	assert.Equal(t, []bool{false, false, false}, slices.Map(components, func(e testHandler) bool {
    		return e.Closed.Load()
    	}))
    
    	// Remove secret, it should be marked as closed
    	c.DeleteSecret("s0")
    	fetchClosed := func() map[string]bool {
    		res := map[string]bool{}
    		for _, c := range components {
    			res[string(c.ID)] = c.Closed.Load()
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/autoscaling/v2/generated.proto

      optional ContainerResourceMetricSource containerResource = 7;
    
      // external refers to a global metric that is not associated
      // with any Kubernetes object. It allows autoscaling based on information
      // coming from components running outside of cluster
      // (for example length of queue in cloud messaging service, or
      // QPS from loadbalancer running outside of cluster).
      // +optional
      optional ExternalMetricSource external = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/autoscaling/v2beta1/generated.proto

      optional ContainerResourceMetricSource containerResource = 7;
    
      // external refers to a global metric that is not associated
      // with any Kubernetes object. It allows autoscaling based on information
      // coming from components running outside of cluster
      // (for example length of queue in cloud messaging service, or
      // QPS from loadbalancer running outside of cluster).
      // +optional
      optional ExternalMetricSource external = 5;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/ctrlz.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package ctrlz implements Istio's introspection facility. When components
    // integrate with ControlZ, they automatically gain an IP port which allows operators
    // to visualize and control a number of aspects of each process, including controlling
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/instances.go

    // limitations under the License.
    
    package echo
    
    import (
    	"errors"
    	"sort"
    
    	"github.com/hashicorp/go-multierror"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    )
    
    var _ Target = Instances{}
    
    // Instances contains the instances created by the builder with methods for filtering
    type Instances []Instance
    
    func (i Instances) ServiceName() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/config.go

    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Cluster that can deploy echo instances.
    // TODO putting this here for now to deal with circular imports, needs to be moved
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/test/framework/suite_test.go

    // limitations under the License.
    
    package framework
    
    import (
    	"fmt"
    	"os"
    	"sync"
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/test/framework/components/environment/kube"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    func defaultExitFn(_ int) {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/istioctl_test.go

    	. "github.com/onsi/gomega"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	commonDeployment "istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. pkg/test/kube/dump.go

    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/annotation"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/prow"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. pkg/kube/multicluster/cluster.go

    			}
    			c.initialSyncTimeout.Store(true)
    		})
    	}
    
    	// Build a namespace watcher. This must have no filter, since this is our input to the filter itself.
    	// This must be done before we build components, so they can access the filter.
    	namespaces := kclient.New[*corev1.Namespace](c.Client)
    	// This will start a namespace informer and wait for it to be ready. So we must start it in a go routine to avoid blocking.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top