Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 323 for ucrt (0.19 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/defaults_windows.go

    limitations under the License.
    */
    
    package v1beta3
    
    const (
    	// DefaultCACertPath defines default location of CA certificate on Windows
    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 03 19:15:03 UTC 2022
    - 879 bytes
    - Viewed (0)
  2. 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)
  3. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

          defaultMode: 420
          sources:
          - serviceAccountToken:
              expirationSeconds: 3607
              path: token
          - configMap:
              items:
              - key: ca.crt
                path: ca.crt
              name: kube-root-ca.crt
          - downwardAPI:
              items:
              - fieldRef:
                  apiVersion: v1
                  fieldPath: metadata.namespace
                path: namespace
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  4. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

          defaultMode: 420
          sources:
          - serviceAccountToken:
              expirationSeconds: 3607
              path: token
          - configMap:
              items:
              - key: ca.crt
                path: ca.crt
              name: kube-root-ca.crt
          - downwardAPI:
              items:
              - fieldRef:
                  apiVersion: v1
                  fieldPath: metadata.namespace
                path: namespace
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  5. pkg/kube/multicluster/secretcontroller.go

    }
    
    func (c *Controller) processItem(key types.NamespacedName) error {
    	log.Infof("processing secret event for secret %s", key)
    	scrt := c.secrets.Get(key.Name, key.Namespace)
    	if scrt != nil {
    		log.Debugf("secret %s exists in informer cache, processing it", key)
    		if err := c.addSecret(key, scrt); err != nil {
    			return fmt.Errorf("error adding secret %s: %v", key, err)
    		}
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. pilot/test/xdstest/extract.go

    	}
    	return res
    }
    
    func ExtractTLSSecrets(t test.Failer, secrets []*anypb.Any) map[string]*tls.Secret {
    	res := map[string]*tls.Secret{}
    	for _, a := range secrets {
    		scrt := UnmarshalAny[tls.Secret](t, a)
    		res[scrt.Name] = scrt
    	}
    	return res
    }
    
    func UnmarshalRouteConfiguration(t test.Failer, resp []*anypb.Any) []*route.RouteConfiguration {
    	un := make([]*route.RouteConfiguration, 0, len(resp))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/crypto/x509/root_unix_test.go

    package x509
    
    import (
    	"bytes"
    	"fmt"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    const (
    	testDir     = "testdata"
    	testDirCN   = "test-dir"
    	testFile    = "test-file.crt"
    	testFileCN  = "test-file"
    	testMissing = "missing"
    )
    
    func TestEnvVars(t *testing.T) {
    	testCases := []struct {
    		name    string
    		fileEnv string
    		dirEnv  string
    		files   []string
    		dirs    []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. helm/minio/templates/_helpers.tpl

    {{- if .Values.tls.enabled }}
    - name: cert-secret-volume
      secret:
        secretName: {{ tpl .Values.tls.certSecret $ }}
        items:
        - key: {{ .Values.tls.publicCrt }}
          path: public.crt
        - key: {{ .Values.tls.privateKey }}
          path: private.key
    {{- end }}
    {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 17 06:04:15 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/curl/CurlTest.java

                logger.log(Level.SEVERE, "error", e);
                fail();
            });
        }
    
        /*
        @Test
        public void test_Get_ssl() throws Exception {
            final String filename = "config/certs/http_ca.crt";
            try (InputStream in = new FileInputStream(filename)) {
                Certificate certificate = CertificateFactory.getInstance("X.509").generateCertificate(in);
    
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top