Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 298 for components (0.12 sec)

  1. tests/integration/security/ca_custom_root/trust_domain_alias_secure_naming_test.go

    import (
    	"fmt"
    	"testing"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    const (
    	POLICY = `
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: "mtls"
    spec:
      mtls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pkg/features/telemetry.go

    // limitations under the License.
    
    package features
    
    import (
    	"istio.io/istio/pkg/env"
    )
    
    // Define common telemetry feature flags shared among the Istio components.
    var (
    	MetricsLocalhostAccessOnly = env.Register("METRICS_LOCALHOST_ACCESS_ONLY", false,
    		"This will disable metrics endpoint from outside of the pod, allowing only localhost access.").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 912 bytes
    - Viewed (0)
  3. tests/integration/pilot/main_test.go

    // limitations under the License.
    
    package pilot
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo/common/deployment"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	i istio.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/pod_controller.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/queue"
    	"istio.io/istio/pkg/test/framework/components/echo"
    )
    
    var _ cache.Controller = &podController{}
    
    type podHandler func(pod *corev1.Pod) error
    
    type podHandlers struct {
    	added   podHandler
    	updated podHandler
    	deleted podHandler
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 09 02:22:47 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/flags.go

    // limitations under the License.
    
    package deployment
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"os"
    
    	"gopkg.in/yaml.v3"
    
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/config"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    var additionalConfigs = &configs{}
    
    func init() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/common.go

    	buildInstallTree()
    }
    
    // ComponentTree represents a tree of component dependencies.
    type (
    	ComponentTree          map[name.ComponentName]any
    	componentNameToListMap map[name.ComponentName][]name.ComponentName
    )
    
    var (
    	// ComponentDependencies is a tree of component dependencies. The semantics are ComponentDependencies[cname] gives
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. pkg/version/version.go

    	GitTag        string `json:"tag"`
    }
    
    // ServerInfo contains the version for a single control plane component
    type ServerInfo struct {
    	Component string
    	Revision  string
    	Info      BuildInfo
    }
    
    // MeshInfo contains the versions for all Istio control plane components
    type MeshInfo []ServerInfo
    
    // NodeType decides the responsibility of the proxy serves in the mesh
    type NodeType string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              aaa: aaa-val
              bbb: bbb-val
              version: "21"
            k8s:
              resources:
                requests:
                  cpu: 111m
                  memory: 111Mi
          - name: user-ingressgateway
            enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    package otelcollector
    
    import (
    	_ "embed"
    	"errors"
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/opentelemetry"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/telemetry/tracing"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/customize_metrics_test.go

    package api
    
    import (
    	_ "embed"
    	"fmt"
    	"strings"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/util/retry"
    	util "istio.io/istio/tests/integration/telemetry"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top