Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 622 for caCerts (0.19 sec)

  1. releasenotes/notes/k8s-tls-secret-cacerts.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    issue:
      - 38528
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 17:54:29 UTC 2022
    - 167 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/util/join.go

    		}
    	} else {
    		return "", errors.New("no CA certificates found in kubeconfig")
    	}
    
    	// hash all the CA certs and include their public key pins as trusted values
    	publicKeyPins := make([]string, 0, len(caCerts))
    	for _, caCert := range caCerts {
    		publicKeyPins = append(publicKeyPins, pubkeypin.Hash(caCert))
    	}
    
    	ctx := map[string]interface{}{
    		"Token":                token,
    		"CAPubKeyPins":         publicKeyPins,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    	err := s.cacertsWatcher.Add(dir)
    	if err != nil {
    		log.Infof("failed to add cacerts file watcher for %s: %v", dir, err)
    		return err
    	}
    
    	log.Infof("Added cacerts files watcher at %v", dir)
    
    	return nil
    }
    
    // initCACertsWatcher initializes the cacerts (/etc/cacerts) directory.
    // In particular it monitors 'ca-key.pem', 'ca-cert.pem', 'root-cert.pem'
    // and 'cert-chain.pem'.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/install_package_path.golden.yaml

            - mountPath: /var/run/secrets/tokens
              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
              name: cacerts
              readOnly: true
            - mountPath: /var/run/secrets/remote
              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca_test.go

    			Namespace: testNamespace,
    			Name:      "cacerts",
    		},
    		Type: v1.SecretTypeTLS,
    		Data: map[string][]byte{
    			"tls.crt": caCert,
    			"tls.key": caKey,
    			"ca.crt":  rootCert,
    		},
    	}
    	clienttest.NewWriter[*v1.Secret](t, client).Create(secret)
    }
    
    func createCASecret(t test.Failer, client kube.Client) {
    	var caCert, caKey, certChain, rootCert []byte
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/pilot_k8s_settings.golden.yaml

            - mountPath: /var/run/secrets/tokens
              name: istio-token
              readOnly: true
            - mountPath: /var/run/secrets/istio-dns
              name: local-certs
            - mountPath: /etc/cacerts
              name: cacerts
              readOnly: true
            - mountPath: /var/run/secrets/remote
              name: istio-kubeconfig
              readOnly: true
            - mountPath: /var/run/secrets/istiod/tls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. tools/certs/Makefile.selfsigned.mk

    root-key.pem:
    	@echo "generating $@"
    	@openssl genrsa -out $@ 4096
    #------------------------------------------------------------------------
    ##<name>-cacerts: generate self signed intermediate certificates for <name> and store them under <name> directory.
    .PHONY: %-cacerts
    
    %-cacerts: %/cert-chain.pem
    	@echo "done"
    
    %/cert-chain.pem: %/ca-cert.pem root-cert.pem
    	@echo "generating $@"
    	@cat $^ > $@
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

         we need to merge JDK's cacerts into the custom truststore via:
    
         keytool -importkeystore -srckeystore <JDK cacerts file location> -destkeystore <resource>/test-key-store/trustStore
    
         Note:
          1. Use JDK8 keytool command to make sure compatibility.
          2. Default password for JDK cacerts is "changeit".
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tools/certs/Makefile.k8s.mk

    ##<name>-cacerts: generate intermediate certificates for a cluster or VM with <name> signed with istio root cert from the specified k8s cluster and store them under <name> directory
    .PHONY: %-cacerts
    
    %-cacerts: %/cert-chain.pem
    	@echo "done"
    
    %/cert-chain.pem: %/ca-cert.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@cat $^ > $@
    	@echo "Intermediate certs stored in $(dir $<)"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/tls/BasicTrustRootIndex.kt

    class BasicTrustRootIndex(vararg caCerts: X509Certificate) : TrustRootIndex {
      private val subjectToCaCerts: Map<X500Principal, Set<X509Certificate>>
    
      init {
        val map = mutableMapOf<X500Principal, MutableSet<X509Certificate>>()
        for (caCert in caCerts) {
          map.getOrPut(caCert.subjectX500Principal) { mutableSetOf() }.add(caCert)
        }
        this.subjectToCaCerts = map
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top