Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 391 for components (0.12 sec)

  1. pkg/test/framework/components/namespace/namespace.go

    	if c.Revision == "default" {
    		c.Revision = ""
    	}
    }
    
    // Instance represents an allocated namespace that can be used to create config, or deploy components in.
    type Instance interface {
    	Name() string
    	SetLabel(key, value string) error
    	RemoveLabel(key string) error
    	Prefix() string
    	Labels() (map[string]string, error)
    	IsAmbient() bool
    	IsInjected() bool
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 18:12:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. operator/cmd/mesh/profile-dump.go

    	default:
    		return []string{fmt.Sprintf("%s=%v", path, v)}, nil
    	}
    }
    
    func pathComponent(component string) string {
    	if !strings.Contains(component, util.PathSeparator) {
    		return component
    	}
    	return strings.ReplaceAll(component, util.PathSeparator, util.EscapedPathSeparator)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. operator/pkg/manifest/shared.go

    		return ""
    	}
    	// https://istio.io/latest/docs/setup/additional-setup/cni/#hosted-kubernetes-settings
    	// GKE requires deployment in kube-system namespace.
    	if strings.Contains(ver.GitVersion, "-gke") {
    		return "components.cni.namespace=kube-system"
    	}
    	// TODO: OpenShift
    	return ""
    }
    
    // makeTreeFromSetList creates a YAML tree from a string slice containing key-value pairs in the format key=value.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/workload_manager.go

    	"io"
    	"sync"
    
    	"github.com/hashicorp/go-multierror"
    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pkg/config/protocol"
    	echoCommon "istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var (
    	_ echo.Instance = &instance{}
    	_ io.Closer     = &instance{}
    )
    
    type workloadHandler interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    		}
    	}
    }
    
    func TestManifestGenerateGateways(t *testing.T) {
    	g := NewWithT(t)
    
    	flags := "-s components.ingressGateways.[0].k8s.resources.requests.memory=999Mi " +
    		"-s components.ingressGateways.[name:user-ingressgateway].k8s.resources.requests.cpu=555m"
    
    	objss, err := runManifestCommands("gateways", flags, liveCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_traffic_policy.go

    		}
    	}
    
    	if opts.mutable.cluster.GetType() == cluster.Cluster_ORIGINAL_DST {
    		opts.mutable.cluster.LbPolicy = cluster.Cluster_CLUSTER_PROVIDED
    	}
    }
    
    // selectTrafficPolicyComponents returns the components of TrafficPolicy that should be used for given port.
    func selectTrafficPolicyComponents(policy *networking.TrafficPolicy) (
    	*networking.ConnectionPoolSettings,
    	*networking.OutlierDetection,
    	*networking.LoadBalancerSettings,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/autoscaling/v1/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
    - 22K bytes
    - Viewed (0)
  8. pkg/security/security.go

    // Options provides all of the configuration parameters for secret discovery service
    // and CA configuration. Used in both Istiod and Agent.
    // TODO: ProxyConfig should have most of those, and be passed to all components
    // (as source of truth)
    type Options struct {
    	// CAEndpoint is the CA endpoint to which node agent sends CSR request.
    	CAEndpoint string
    
    	// CAEndpointSAN overrides the ServerName extracted from CAEndpoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    	if clusterID == "" {
    		if hasKubeRegistry(args.RegistryOptions.Registries) {
    			clusterID = cluster.ID(provider.Kubernetes)
    		}
    	}
    	return clusterID
    }
    
    // Start starts all components of the error serving tap http serverPilot discovery service on the port specified in DiscoveryServerOptions.
    // If Port == 0, a port number is automatically chosen. Content serving is started by this method,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/namespace/kube.go

    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/api/label"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/resource"
    	kube2 "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // nolint: gosec
    // Test only code
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top