Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for InsecureSkipVerify (0.28 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                                          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: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  2. pkg/config/validation/agent/validation.go

    			if settings.CaCertificates != "" || settings.CredentialName != "" || settings.SubjectAltNames != nil {
    				errs = AppendErrors(errs, fmt.Errorf("cannot specify CaCertificates or CredentialName or SubjectAltNames when InsecureSkipVerify is set true"))
    			}
    		}
    
    		if settings.Mode == networking.ClientTLSSettings_MUTUAL {
    			// In tls mutual mode, we can specify both client cert and ca cert by CredentialName.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/crypto/tls/tls.go

    	c.handshakeFn = c.serverHandshake
    	return c
    }
    
    // Client returns a new TLS client side connection
    // using conn as the underlying transport.
    // The config cannot be nil: users must set either ServerName or
    // InsecureSkipVerify in the config.
    func Client(conn net.Conn, config *Config) *Conn {
    	c := &Conn{
    		conn:     conn,
    		config:   config,
    		isClient: true,
    	}
    	c.handshakeFn = c.clientHandshake
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. pkg/test/echo/server/endpoint/http.go

    				return net.Dial("unix", s.UDSServer)
    			},
    		}
    	} else if s.Port.TLS {
    		url = fmt.Sprintf("https://%s", address)
    		client.Transport = &http.Transport{TLSClientConfig: &tls.Config{InsecureSkipVerify: true}} // nolint: gosec // test only code
    	} else {
    		url = fmt.Sprintf("http://%s", address)
    	}
    
    	err := retry.UntilSuccess(func() error {
    		resp, err := client.Get(url)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. pkg/wasm/imagefetcher.go

    	if opt.Insecure {
    		t := remote.DefaultTransport.(*http.Transport).Clone()
    		// nolint: gosec
    		// This is only when a user explicitly sets a flag to enable insecure mode
    		t.TLSClientConfig = &tls.Config{
    			InsecureSkipVerify: opt.Insecure,
    		}
    		fetchOpts = append(fetchOpts, remote.WithTransport(t))
    	}
    
    	return &ImageFetcher{
    		fetchOpts: append(fetchOpts, remote.WithContext(ctx)),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/wait.go

    	for _, comp := range components {
    		fmt.Printf("[control-plane-check] Checking %s at %s\n", comp.name, comp.url)
    
    		go func(comp controlPlaneComponent) {
    			tr := &http.Transport{
    				TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    			}
    			client := &http.Client{Transport: tr}
    			start := time.Now()
    			var lastError error
    
    			err := wait.PollUntilContextTimeout(
    				context.Background(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_test.go

    		os.Exit(1)
    	}
    
    	testConfig = &Config{
    		Time:               func() time.Time { return time.Unix(0, 0) },
    		Rand:               zeroSource{},
    		Certificates:       make([]Certificate, 2),
    		InsecureSkipVerify: true,
    		CipherSuites:       allCipherSuites(),
    		CurvePreferences:   []CurveID{X25519, CurveP256, CurveP384, CurveP521},
    		MinVersion:         VersionTLS10,
    		MaxVersion:         VersionTLS13,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. src/crypto/tls/boring_test.go

    	testServerCert := func(t *testing.T, desc string, pool *x509.CertPool, key interface{}, list [][]byte, ok bool) {
    		clientConfig := testConfig.Clone()
    		clientConfig.RootCAs = pool
    		clientConfig.InsecureSkipVerify = false
    		clientConfig.ServerName = "example.com"
    
    		serverConfig := testConfig.Clone()
    		serverConfig.Certificates = []Certificate{{Certificate: list, PrivateKey: key}}
    		serverConfig.BuildNameToCertificate()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/stats_test.go

    							TLS: echo.TLS{
    								CertFile:           "/etc/certs/custom/cert-chain.pem",
    								KeyFile:            "/etc/certs/custom/key.pem",
    								CaCertFile:         "/etc/certs/custom/root-cert.pem",
    								InsecureSkipVerify: true,
    							},
    						})
    					}
    				})
    		})
    }
    
    // TestStatsTCPFilter includes common test logic for stats and metadataexchange filters running
    // with nullvm and wasm runtime for TCP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                          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
    - 506.8K bytes
    - Viewed (0)
Back to top