Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for credentialName (1.41 sec)

  1. pilot/pkg/networking/core/gateway_simulation_test.go

    			config: createGateway("gateway", "", `port:
      number: 443
      name: https
      protocol: HTTPS
    hosts:
    - "example.com"
    tls:
      httpsRedirect: true
      mode: SIMPLE
      credentialName: test`) + simpleRoute,
    			calls: []simulation.Expect{
    				{
    					Name: "request",
    					Call: simulation.Call{
    						Port:       443,
    						HostHeader: "example.com",
    						Protocol:   simulation.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    					},
    					ValidationContextType: &tls.CommonTlsContext_ValidationContext{},
    				},
    			},
    		},
    		{
    			name:        "With tls mode simple and CredentialName, InsecureSkipVerify is set true and env VERIFY_CERTIFICATE_AT_CLIENT is true",
    			cluster:     &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                      clientCertificate:
                                        description: REQUIRED if mode is `MUTUAL`.
                                        type: string
                                      credentialName:
                                        description: The name of the secret that holds
                                          the TLS certs for the client including the CA
                                          certificates.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    caCertificates: description: 'OPTIONAL: The path to the file containing certificate authority certificates to use in verifying a presented server certificate.' type: string clientCertificate: description: REQUIRED if mode is `MUTUAL`. type: string credentialName: description: The name of the secret that holds the TLS certs for the client including the CA certificates. type: string insecureSkipVerify: description: '`insecureSkipVerify` specifies whether the proxy should skip verifying the CA signature...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    	// If credential name is specified at gateway config, create  SDS config for gateway to fetch key/cert from Istiod.
    	case serverTLSSettings.CredentialName != "":
    		authnmodel.ApplyCredentialSDSToServerCommonTLSContext(ctx.CommonTlsContext, serverTLSSettings, credentialSocketExist)
    	default:
    		certProxy := &model.Proxy{}
    		certProxy.IstioVersion = proxy.IstioVersion
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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