Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for CredentialName (0.24 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. 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)
  8. 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)
  9. pkg/config/analysis/analyzers/testdata/gateway-secrets-validation.yaml

      servers:
        - port:
            number: 443
            name: https
            protocol: HTTPS
          tls:
            mode: SIMPLE
            credentialName: "invalid-key" # wrong key names, should have one error
          hosts:
            - "httpbin.example.com"
    ---
    apiVersion: v1
    data:
      tls.cert: aHVzaCBodXNoIGh1c2gK
    kind: Secret
    metadata:
      name: missing-key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. releasenotes/notes/istio-mutual-cred-name.yaml

    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
      **Fixed** an issue where using `ISTIO_MUTUAL` TLS mode in Gateways while also setting `credentialName` cause mutual TLS to not be configured.
      This configuration is now rejected, as `ISTIO_MUTUAL` is intended to be used without `credentialName` set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 22 06:41:00 UTC 2022
    - 480 bytes
    - Viewed (0)
Back to top