Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 242 for components (0.17 sec)

  1. tests/integration/pilot/cni/cniversionskew_test.go

    package cni
    
    import (
    	"fmt"
    	"path/filepath"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/env"
    	"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/label"
    	"istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. 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)
  3. tests/integration/security/https_jwt/main_test.go

    	"path"
    	"testing"
    
    	"istio.io/istio/pkg/test/env"
    	"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/components/jwt"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tests/integration/security/ca_custom_root/multi_root_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"
    )
    
    func TestMultiRootSetup(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			testNS := apps.EchoNamespace.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/gw_topology_test.go

    // limitations under the License.
    
    package pilot
    
    import (
    	"fmt"
    	"testing"
    	"time"
    
    	"istio.io/istio/pkg/test/framework"
    	kubecluster "istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	kubetest "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/retry"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top