Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tls_certificates (0.27 sec)

  1. tests/testdata/envoy_local.json

                "port_value": 17011
              }
            },
            "filter_chains": [
              {
                "tls_context": {
                  "common_tls_context": {
                    "tls_certificates": [
                      {
                        "certificate_chain": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    		ConfigType: &envoy_core.TransportSocket_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&envoy_tls.DownstreamTlsContext{
    				CommonTlsContext: &envoy_tls.CommonTlsContext{
    					TlsCertificates: []*envoy_tls.TlsCertificate{
    						{
    							CertificateChain: &envoy_core.DataSource{
    								Specifier: &envoy_core.DataSource_Filename{
    									Filename: "/etc/envoy/external-forward-proxy-cert.pem",
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/sds/sdsservice.go

    				PrivateKey: &core.DataSource{
    					Specifier: &core.DataSource_InlineBytes{
    						InlineBytes: s.PrivateKey,
    					},
    				},
    			})
    			secret.Type = &tls.Secret_TlsCertificate{
    				TlsCertificate: &tls.TlsCertificate{
    					CertificateChain: &core.DataSource{
    						Specifier: &core.DataSource_InlineBytes{
    							InlineBytes: s.CertificateChain,
    						},
    					},
    					PrivateKeyProvider: &tls.PrivateKeyProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/secret/config_dump.json

              "last_updated": "2023-05-15T01:32:52.262Z",
              "secret": {
                "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
                "name": "default",
                "tls_certificate": {
                  "certificate_chain": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 15:14:48 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds.go

    				},
    			},
    		}
    		if certInfo.Staple != nil {
    			tlsCertificate.OcspStaple = &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: certInfo.Staple,
    				},
    			}
    		}
    		res = protoconv.MessageToAny(&envoytls.Secret{
    			Name: name,
    			Type: &envoytls.Secret_TlsCertificate{
    				TlsCertificate: tlsCertificate,
    			},
    		})
    	}
    	return &discovery.Resource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. samples/security/spire/README.md

      ```bash
      $ export SLEEP_POD=$(kubectl get pod -l app=sleep -o jsonpath="{.items[0].metadata.name}")
      $ istioctl pc secret $SLEEP_POD -o json | jq -r \
      '.dynamicActiveSecrets[0].secret.tlsCertificate.certificateChain.inlineBytes' | base64 --decode > chain.pem
      ```
    
    1. Inspect the certificate content and verify that SPIRE was the issuer:
    
      ```bash
      $ openssl x509 -in chain.pem -text | grep SPIRE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_builder_test.go

    			t.Fatal("expected tls certificates")
    		}
    		if commonTLSContext.TlsCertificateSdsSecretConfigs[0].Name != "default" {
    			t.Fatalf("expected certificate default, actual %s",
    				commonTLSContext.TlsCertificates[0].CertificateChain.String())
    		}
    	}
    	instances := make([]*model.ServiceInstance, 0, len(services))
    	for _, s := range services {
    		instances = append(instances, &model.ServiceInstance{
    			Service: s,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/testdata/config_dump.json

              "last_updated": "2023-05-15T01:32:52.262Z",
              "secret": {
                "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.Secret",
                "name": "default",
                "tls_certificate": {
                  "certificate_chain": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    		}
    		if commonTLSContext.TlsCertificateSdsSecretConfigs[0].Name != "file-cert:httpbin.pem~httpbinkey.pem" {
    			return fmt.Errorf("expected certificate httpbin.pem, actual %s", commonTLSContext.TlsCertificates[0].CertificateChain.String())
    		}
    		if tlsContext.RequireClientCertificate.Value {
    			return fmt.Errorf("expected RequireClientCertificate to be false")
    		}
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top