Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 323 for components (0.25 sec)

  1. pkg/test/framework/components/environment/kube/settings.go

    //  limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    
    	istioKube "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // clusterIndex is the index of a cluster within the KubeConfig or topology file entries
    type clusterIndex int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. tests/integration/helm/upgrade/util.go

    	"path/filepath"
    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	kubecluster "istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/helm"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/shell"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/assert"
    	"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
    - 17.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/prometheus/kube.go

    	"github.com/prometheus/common/model"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	istioKube "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller.go

    	registerHandler(h handler)
    }
    
    // BuildMultiClusterComponent constructs a new multicluster component. For each cluster, the constructor will be called.
    // If the cluster is removed, the T.Close() method will be called.
    // Constructors MUST not do blocking IO; they will block other operations.
    // During a cluster update, a new component is constructed before the old one is removed for seamless migration.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/config.go

    package istio
    
    import (
    	"fmt"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	// DefaultSystemNamespace default value for SystemNamespace
    	DefaultSystemNamespace = "istio-system"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.RedirectDNS, "ISTIO_META_DNS_CAPTURE")
    
    	flag.BindEnv(fs, constants.DropInvalid, "", "Enable invalid drop in the iptables rules.", &cfg.DropInvalid)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/tests/integration/helm"
    )
    
    const (
    	gatewayFile          = "testdata/gateway.yaml"
    	jsonGatewayFile      = "testdata/gateway.json"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top