Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 300 for components (0.11 sec)

  1. tests/integration/security/external_ca/reachability_test.go

    	"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/echotest"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    )
    
    // TestReachability verifies:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. tests/integration/security/policy_attachment_only/main_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/authz"
    	"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"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/deployment/external.go

    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/common/ports"
    	"istio.io/istio/pkg/test/framework/components/echo/deployment"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/envoy/proxy_test.go

    			l, c := splitComponentLog(tt.input)
    			if l != tt.log {
    				t.Errorf("expected log level %v, got %v", tt.log, l)
    			}
    			if !reflect.DeepEqual(c, tt.components) {
    				t.Errorf("expected component log level %v, got %v", tt.components, c)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/profile-dump/output/all_off.txt

    components.base.enabled=true
    components.cni.enabled=false
    components.egressGateways[0].enabled=false
    components.egressGateways[0].name="istio-egressgateway"
    components.ingressGateways[0].enabled=true
    components.ingressGateways[0].name="istio-ingressgateway"
    components.pilot.enabled=false
    hub="gcr.io/istio-testing"
    profile="default"
    tag="latest"
    values.defaultRevision=""
    values.global.configValidation=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 453 bytes
    - Viewed (0)
  6. releasenotes/notes/fips.yaml

    kind: bug-fix
    area: security
    issue:
    - 49081
    
    releaseNotes:
    - |
      **Added** an environment variable `COMPLIANCE_POLICY` to Istio components for
      enforcing TLS restriction for compliance with FIPS. When set to `fips-140-2`
      on the Istiod container, the Istio Proxy container, and all other Istio
      components, TLS version is restricted to v1.2, the cipher suites to a subset
      of `ECDHE-ECDSA-AES128-GCM-SHA256`, `ECDHE-RSA-AES128-GCM-SHA256`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. operator/pkg/controlplane/control_plane_test.go

    				fmt.Errorf("component Pilot not started in RenderManifest"),
    				fmt.Errorf("component Cni not started in RenderManifest"),
    			},
    		},
    		{
    			desc: "operator-not-started",
    			testOperator: &IstioControlPlane{
    				components: []component.IstioComponent{
    					&component.BaseComponent{
    						IstioComponentBase: &component.IstioComponentBase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 04 02:36:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. operator/pkg/util/progress/progress.go

    func (p *Log) reportProgress(component string) func() {
    	return func() {
    		cmpName := name.ComponentName(component)
    		cliName := name.UserFacingComponentName(cmpName)
    		p.mu.Lock()
    		defer p.mu.Unlock()
    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    		cmp.mu.Unlock()
    		successIcon := "✅"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. operator/pkg/validate/validate_test.go

    			yamlStr: `
    installPackagePath: /local/file/path
    `,
    		},
    		{
    			desc: "BadGatewayName",
    			yamlStr: `
    components:
      ingressGateways:
      - namespace: istio-ingress-ns2
        name: istio@ingress-1
        enabled: true
    `,
    			wantErrs: makeErrors([]string{`invalid value Components.IngressGateways: istio@ingress-1`}),
    		},
    		{
    			desc: "BadValuesIP",
    			yamlStr: `
    values:
      global:
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. tests/integration/security/filebased_tls_origination/destination_rule_tls_test.go

    package filebasedtlsorigination
    
    import (
    	"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"
    )
    
    // TestDestinationRuleTls tests that MUTUAL tls mode is respected in DestinationRule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top