Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 323 for ucrt (0.41 sec)

  1. samples/grpc-echo/grpc-echo.yaml

              - "17070"
              - --grpc
              - "17171"
              - --port
              - "3333"
              - --port
              - "8080"
              - --version
              - v1
              - --crt=/cert.crt
              - --key=/cert.key
              env:
              - name: INSTANCE_IP
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: status.podIP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/net/unixsock_readmsg_test.go

    	}
    	_, _, err = ucw.WriteMsgUnix(nil, rights, nil)
    	if err != nil {
    		t.Fatalf("UnixConn readMsg: %v", err)
    	}
    	err = ucr.SetReadDeadline(time.Now().Add(5 * time.Second))
    	if err != nil {
    		t.Fatalf("Can't set unix connection timeout: %v", err)
    	}
    	_, oobn, _, _, err := ucr.ReadMsgUnix(nil, oob)
    	if err != nil {
    		t.Fatalf("UnixConn readMsg: %v", err)
    	}
    
    	scms, err := syscall.ParseSocketControlMessage(oob[:oobn])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 09:15:25 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    					Prefix: "/registry",
    					Transport: storagebackend.TransportConfig{
    						ServerList:    nil,
    						KeyFile:       "/var/run/kubernetes/etcd.key",
    						TrustedCAFile: "/var/run/kubernetes/etcdca.crt",
    						CertFile:      "/var/run/kubernetes/etcdce.crt",
    					},
    					CompactionInterval:    storagebackend.DefaultCompactInterval,
    					CountMetricPollPeriod: time.Minute,
    				},
    				DefaultStorageMediaType: "application/vnd.kubernetes.protobuf",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/controller/certificates/rootcacertpublisher/publisher_test.go

    		})
    	}
    }
    
    func defaultCrtConfigMapPtr(rootCA []byte) *v1.ConfigMap {
    	tmp := v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: RootCACertConfigMapName,
    		},
    		Data: map[string]string{
    			"ca.crt": string(rootCA),
    		},
    	}
    	tmp.Namespace = metav1.NamespaceDefault
    	return &tmp
    }
    
    func TestConfigMapUpdateNoHotLoop(t *testing.T) {
    	testcases := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. pkg/hbone/README.md

    #### Server CLI
    
    A CLI client is available using the `server` binary.
    
    Usage examples:
    
    ```shell
    go install ./pkg/test/echo/cmd/server
    # Serve on port 15008 (default) with TLS
    server --tls 15008 --crt tests/testdata/certs/cert.crt --key tests/testdata/certs/cert.key
    ```
    
    #### Server Golang Library
    
    An (unstable) library to run an HBONE server is available at `pkg/hbone`.
    
    Usage example:
    
    ```go
    s := hbone.NewServer()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 11 16:27:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. samples/jwt-server/jwt-server.yaml

    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: jwt-cert-key-secret
    # command to generate certificate
    # use the generated server.crt, server.key by following https://github.com/istio/istio/blob/master/samples/jwt-server/testdata/README.MD
    stringData: 
      server.crt: |
        -----BEGIN CERTIFICATE-----
        MIIDjzCCAnegAwIBAgIUfIuuQDfWakIpZ7bZAuuLUWhSm2AwDQYJKoZIhvcNAQEL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/testdata/healthcheck-rewrite.yaml

              - --metrics=15014
              - --cluster=cluster-0
              - --grpc=7070
              - --port=8080
              - --port=3333
              - --version=v1
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
            - name: INSTANCE_IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/istio_ca_test.go

    	_, err = os.Stat(path.Join(dir, "ca.crt"))
    	g.Expect(os.IsNotExist(err)).Should(Equal(true))
    
    	// Should load remote cacerts successfully.
    	createCATLSSecret(t, s.kubeClient)
    
    	err = s.loadCACerts(caOpts, dir)
    	g.Expect(err).Should(BeNil())
    
    	expectedRoot, err := readSampleCertFromFile("root-cert.pem")
    	g.Expect(err).Should(BeNil())
    
    	g.Expect(os.ReadFile(path.Join(dir, "ca.crt"))).Should(Equal(expectedRoot))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/testdata/basic.yaml

              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.yaml

              - --cluster=cluster-0
              - --grpc=7070
              - --port=8090
              - --port=8080
              - --port=3333
              - --version=bar
              - --istio-version=
              - --crt=/cert.crt
              - --key=/cert.key
            ports:
            - containerPort: 7070
            - containerPort: 8090
            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top