Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for credentialName (0.27 sec)

  1. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 217 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname.yaml

    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 288 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 271 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls_test.go

    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with CredentialName specified",
    			opts: &buildClusterOpts{
    				mutable: newTestCluster(),
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:            networking.ClientTLSSettings_SIMPLE,
    				CredentialName:  credentialName,
    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    				CredentialName:    "some credential",
    				ClientCertificate: "",
    				PrivateKey:        "",
    				CaCertificates:    "",
    			},
    			valid: true,
    		},
    		{
    			name: "SIMPLE CredentialName set with ClientCertificate specified",
    			tls: &networking.ClientTLSSettings{
    				Mode:              networking.ClientTLSSettings_SIMPLE,
    				CredentialName:    "credential",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. pilot/pkg/security/model/authentication.go

    	// credentialName SDS which may refer to secrets which do not exist. We do not want to block the
    	// entire listener/cluster in these cases.
    	ResourceApiVersion: core.ApiVersion_V3,
    }
    
    // ConstructSdsSecretConfigForCredential constructs SDS secret configuration used
    // from certificates referenced by credentialName in DestinationRule or Gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. tests/integration/security/egress_gateway_origination_test.go

    }
    
    func newTLSGatewayDestinationRule(t framework.TestContext, to echo.Instances, destinationRuleMode string, credentialName string) {
    	args := map[string]any{
    		"to":             to,
    		"Mode":           destinationRuleMode,
    		"CredentialName": credentialName,
    	}
    
    	// Get namespace for gateway pod.
    	istioCfg := istio.DefaultConfigOrFail(t, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tests/integration/security/sds_ingress/util/util.go

    }
    
    type TestConfig struct {
    	Mode           string
    	CredentialName string
    	Host           string
    	ServiceName    string
    	GatewayLabel   string
    }
    
    const vsTemplate = `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: {{.CredentialName}}
    spec:
      hosts:
      - "{{.Host}}"
      gateways:
      - {{.CredentialName}}
      http:
      - match:
        - uri:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. tests/integration/security/egress_sidecar_tls_origination_test.go

    func newTLSSidecarDestinationRule(t framework.TestContext, to echo.Instances, destinationRuleMode string,
    	workloadSelector string, credentialName string, clientNamespace namespace.Instance,
    ) {
    	args := map[string]any{
    		"to":               to,
    		"Mode":             destinationRuleMode,
    		"CredentialName":   credentialName,
    		"WorkloadSelector": workloadSelector,
    	}
    	se := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top