Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for credentialName (0.51 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-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)
  7. 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)
  8. releasenotes/notes/43921.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 43891
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 240 bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/domain.example'
        port:
          name: default
          number: 34000
          protocol: HTTPS
        tls:
          credentialName: kubernetes-gateway://istio-system/my-cert-http
          mode: SIMPLE
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/gateway/secret.go

    				continue
    			}
    
    			secret := ctx.Find(gvk.Secret, resource.NewShortOrFullName(gwNs, cn))
    			if secret == nil {
    				m := msg.NewReferencedResourceNotFound(r, "credentialName", cn)
    
    				if line, ok := util.ErrorLine(r, fmt.Sprintf(util.CredentialName, i)); ok {
    					m.Line = line
    				}
    
    				ctx.Report(gvk.Gateway, m)
    				continue
    			}
    			if !isValidSecret(secret) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top