Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for CredentialName (0.2 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. pkg/config/analysis/analyzers/gateway/certificate.go

    	}
    }
    
    func haveSameCertificate(currentGatewayTLS, gatewayTLS *v1alpha3.ServerTLSSettings) bool {
    	if currentGatewayTLS.CredentialName != "" && gatewayTLS.CredentialName != "" {
    		return currentGatewayTLS.CredentialName == gatewayTLS.CredentialName
    	}
    
    	if currentGatewayTLS.CredentialName == "" && gatewayTLS.CredentialName == "" {
    		if currentGatewayTLS.ServerCertificate != "" && gatewayTLS.ServerCertificate != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "test-01-wildcard-cert" # validation error since have same certificate with gateway-02-test-01
        hosts:
        - "01.test-01.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/analysis/analyzers/testdata/gateway-secrets.yaml

      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "httpbin-credential"
        hosts:
        - "httpbin.example.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: defaultgateway-nocredential # No credentialName specified, we shouldn't generate any errors
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. 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)
  10. samples/multicluster/expose-istiod-https.yaml

            # use a valid credential here
            credentialName: "$CREDENTIAL_NAME"
          hosts:
          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
        - port:
            name: https-istiodwebhook
            number: 15017
            protocol: https
          tls:
            mode: SIMPLE
            # use a valid credential here
            credentialName: "$CREDENTIAL_NAME"
          hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top