Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 323 for ucrt (0.09 sec)

  1. pkg/test/framework/components/echo/kube/templates/deployment.yaml

              - --istio-version={{ $version }}
    {{- if $.TLSSettings }}
              - --crt=/etc/certs/custom/cert-chain.pem
              - --key=/etc/certs/custom/key.pem
    {{- if $.TLSSettings.AcceptAnyALPN}}
              - --disable-alpn
    {{- end }}
    {{- else }}
              - --crt=/cert.crt
              - --key=/cert.key
    {{- end }}
            ports:
    {{- range $i, $p := $appContainer.ContainerPorts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/security/https_jwt/main_test.go

    	if cfg == nil {
    		return
    	}
    	script := path.Join(env.IstioSrc, "samples/jwt-server/testdata", "ca.crt")
    	rootCaCert, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    	// command to generate certificate
    	// use the generated ca.crt by following https://github.com/istio/istio/blob/master/samples/jwt-server/testdata/README.MD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/benchmarks/secrets.yaml

    {{- range $i := until .Services }}
    apiVersion: v1
    kind: Secret
    metadata:
      name: sds-credential-{{$i}}
      namespace: default
    type: kubernetes.io/tls
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 15 18:40:09 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. tests/testdata/certs/README.md

    # Self-signed certificates
    
        openssl genrsa -out cert.key 2048
        openssl req -new -x509 -sha256 -key cert.key -out cert.crt -days 3650
    
    For the common name, please type the following FQDN:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 02 23:54:48 UTC 2018
    - 215 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/etcd/local_test.go

        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
        - --peer-key-file=etcd/peer.key
        - --peer-trusted-ca-file=etcd/ca.crt
        - --snapshot-count=10000
        - --trusted-ca-file=etcd/ca.crt
        image: /etcd:%s
        imagePullPolicy: IfNotPresent
        livenessProbe:
          failureThreshold: 8
          httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/crypto/x509/root_aix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{
    	"/var/ssl/certs/ca-bundle.crt",
    }
    
    // Possible directories with certificate files; all will be read.
    var certDirectories = []string{
    	"/var/ssl/certs",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 02 22:53:18 UTC 2021
    - 410 bytes
    - Viewed (0)
  7. docs/iam/policies/pbac-tests.sh

    API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}')
    (openssl s_client -connect 127.0.0.1:7373 2>/dev/null 1>public.crt)
    
    export CI=true
    export MINIO_KMS_KES_ENDPOINT=https://127.0.0.1:7373
    export MINIO_KMS_KES_API_KEY="${API_KEY}"
    export MINIO_KMS_KES_KEY_NAME=minio-default-key
    export MINIO_KMS_KES_CAPATH=public.crt
    export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-text-shift.in

    ABCDEFGHIJKLMNOPQRSTUVXxyz!"#ยค%&/?"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 253 bytes
    - Viewed (0)
  9. helm/minio/README.md

    For instance, given that TLS is enabled and you need to add trust for MinIO's own CA and for the CA of a Keycloak server, a Kubernetes secret can be created from the certificate files using `kubectl`:
    
    ```
    kubectl -n minio create secret generic minio-trusted-certs --from-file=public.crt --from-file=keycloak.crt
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. 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)
Back to top