Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for crt2 (0.05 sec)

  1. cmd/kubeadm/app/phases/certs/certs.go

    	uxName     string
    }
    
    // SharedCertificateExists verifies if the shared certificates exist and are still valid - the certificates must be
    // equal across control-plane nodes: ca.key, ca.crt, sa.key, sa.pub, front-proxy-ca.key, front-proxy-ca.crt and etcd/ca.key, etcd/ca.crt if local/stacked etcd
    // Missing private keys of CA are non-fatal and produce warnings.
    func SharedCertificateExists(cfg *kubeadmapi.ClusterConfiguration) (bool, error) {
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        "${CERT_DIR}/pki/ca.crt" \
        "${CERT_DIR}/pki/issued/${MASTER_NAME}.crt" \
        "${CERT_DIR}/pki/private/${MASTER_NAME}.key" \
        "${CERT_DIR}/pki/issued/kubelet.crt" \
        "${CERT_DIR}/pki/private/kubelet.key" \
        "${CERT_DIR}/pki/issued/kubecfg.crt" \
        "${CERT_DIR}/pki/private/kubecfg.key" \
        "${CERT_DIR}/pki/issued/kube-apiserver.crt" \
        "${CERT_DIR}/pki/private/kube-apiserver.key"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/storage_test.go

    			location: expectedIP + ":12345",
    		},
    		{
    			pod: api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{Name: "ctr1"},
    						{Name: "ctr2", Ports: []api.ContainerPort{{ContainerPort: 9376}}},
    					},
    				},
    				Status: api.PodStatus{PodIPs: []api.PodIP{{IP: expectedIP}}},
    			},
    			query:    "foo",
    			location: expectedIP + ":9376",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

    # which should be able to be used as the CA to verify itself
    CERT_DIR=${CERT_DIR:-"/var/run/kubernetes"}
    ROOT_CA_FILE=${CERT_DIR}/server-ca.crt
    CLUSTER_SIGNING_CERT_FILE=${CLUSTER_SIGNING_CERT_FILE:-"${CERT_DIR}/client-ca.crt"}
    CLUSTER_SIGNING_KEY_FILE=${CLUSTER_SIGNING_KEY_FILE:-"${CERT_DIR}/client-ca.key"}
    # Reuse certs will skip generate new ca/cert files under CERT_DIR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/constants/constants.go

    	// CACertName defines certificate name
    	CACertName = "ca.crt"
    	// CAKeyName defines certificate name
    	CAKeyName = "ca.key"
    
    	// APIServerCertAndKeyBaseName defines API's server certificate and key base name
    	APIServerCertAndKeyBaseName = "apiserver"
    	// APIServerCertName defines API's server certificate name
    	APIServerCertName = "apiserver.crt"
    	// APIServerKeyName defines API's server key name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

                    $compare_type2),
                  (MHLO_CompareOp:$rnz $rem1, (MHLO_ConstantOp $cst2), MHLO_ComparisonDirectionValue<"NE">, $compare_type3)),
                (MHLO_AddOp $rem2, $arg1),
                $rem3),
              (TF_FloorModOp $arg, $arg1),
              [(ValueEquals<"0.0"> $cst),
               (ValueEquals<"0.0"> $cst1),
               (ValueEquals<"0.0"> $cst2),
               (SameValue $rem, $rem1),
               (SameValue $rem, $rem2),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	   openssl  x509 -req -days 36500 \
    	   	-in ./client.csr \
    	   	-extfile <(printf "${EXTFILE}") \
    	   	-CA ./root.crt \
    	   	-CAkey ./root.key \
    	   	-set_serial 1 \
    	          	-sha256 \
    	   	-out ./client.crt \
    	   	&& \
    	   openssl x509 -in client.crt -text
    
    	   > output
    
    	   is below
    
    	*/
    
    	clientCNCert = `Certificate:
        Data:
            Version: 3 (0x2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

            - __meta_kubernetes_service_name
            - __meta_kubernetes_endpoint_port_name
          scheme: https
          tls_config:
            ca_file: /var/run/secrets/kubernetes.io/serviceaccount/ca.crt
            insecure_skip_verify: true
        - bearer_token_file: /var/run/secrets/kubernetes.io/serviceaccount/token
          job_name: kubernetes-nodes
          kubernetes_sd_configs:
          - role: node
          relabel_configs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. hack/make-rules/test-cmd.sh

        --storage-media-type="${KUBE_TEST_API_STORAGE_TYPE-}" \
        --cert-dir="${TMPDIR:-/tmp/}" \
        --service-cluster-ip-range="10.0.0.0/24" \
        --client-ca-file=hack/testdata/ca/ca.crt \
        --token-auth-file=hack/testdata/auth-tokens.csv 1>&2 &
      export APISERVER_PID=$!
    
      kube::util::wait_for_url_with_bearer_token "https://127.0.0.1:${SECURE_API_PORT}/healthz" "admin-token" "apiserver"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

              name: konnectivity-agent
              command: ["/proxy-agent"]
              args: [
                      "--logtostderr=true",
                      "--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
    __EXTRA_PARAMS__
                      "--proxy-server-host=__APISERVER_IP__",
                      "--proxy-server-port=8132",
                      "--sync-interval=5s",
                      "--sync-interval-cap=30s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top