Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for credentialName (0.34 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    				Message: fmt.Sprintf(
    					"certificateRef %v/%v not accessible to a Gateway in namespace %q (missing a ReferenceGrant?)",
    					tls.CertificateRefs[0].Name, credNs, namespace,
    				),
    			}
    		}
    		out.CredentialName = cred
    	case k8s.TLSModePassthrough:
    		out.Mode = istio.ServerTLSSettings_PASSTHROUGH
    		if isAutoPassthrough {
    			out.Mode = istio.ServerTLSSettings_AUTO_PASSTHROUGH
    		}
    	}
    	return out, nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

      servers:
      - port:
          number: {{.GatewayPort}}
          name: {{.GatewayPortName}}
          protocol: {{.GatewayProtocol}}
    {{- if .Credential }}
        tls:
          mode: {{.TLSMode}}
          credentialName: {{.Credential}}
    {{- if .Ciphers }}
          cipherSuites:
    {{- range $cipher := .Ciphers }}
          - "{{$cipher}}"
    {{- end }}
    {{- end }}
    {{- end }}
        hosts:
        - "{{.GatewayHost}}"
    ---
    `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/gateway.go

    	ContainsAutoPassthroughGateways bool
    
    	// PortMap defines a mapping of targetPorts to the set of Service ports that reference them
    	PortMap GatewayPortMap
    
    	// VerifiedCertificateReferences contains a set of all credentialNames referenced by gateways *in the same namespace as the proxy*.
    	// These are considered "verified", since there is mutually agreement from the pod, Secret, and Gateway, as all
    	// reside in the same namespace and trust boundary.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top