Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,164 for Decref (0.15 sec)

  1. pilot/pkg/credentials/kube/secrets.go

    	TLSSecretCert = "tls.crt"
    	// The ID/name for the k8sKey in kubernetes tls secret.
    	TLSSecretKey = "tls.key"
    	// The ID/name for the certificate OCSP staple in kubernetes tls secret
    	TLSSecretOcspStaple = "tls.ocsp-staple"
    	// The ID/name for the CA certificate in kubernetes tls secret
    	TLSSecretCaCert = "ca.crt"
    	// The ID/name for the CRL in kubernetes tls secret.
    	TLSSecretCrl = "ca.crl"
    )
    
    type CredentialsController struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/kubelet/secret/secret_manager.go

    	}
    	newSecret := func() runtime.Object {
    		return &v1.Secret{}
    	}
    	isImmutable := func(object runtime.Object) bool {
    		if secret, ok := object.(*v1.Secret); ok {
    			return secret.Immutable != nil && *secret.Immutable
    		}
    		return false
    	}
    	gr := corev1.Resource("secret")
    	return &secretManager{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. helm-releases/minio-4.0.12.tgz

    displayed in the output of a successful install. ### Existing secret Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret minio/minio...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Aug 14 05:50:43 UTC 2022
    - 19.4K bytes
    - Viewed (0)
  4. helm-releases/minio-4.0.13.tgz

    displayed in the output of a successful install. ### Existing secret Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret minio/minio...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 23 18:18:14 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  5. helm-releases/minio-4.0.5.tgz

    displayed in the output of a successful install. ### Existing secret Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret minio/minio...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 16 06:42:56 UTC 2022
    - 18.3K bytes
    - Viewed (0)
  6. helm-releases/minio-4.0.8.tgz

    displayed in the output of a successful install. ### Existing secret Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret minio/minio...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jul 29 23:39:54 UTC 2022
    - 18.6K bytes
    - Viewed (0)
  7. helm-releases/minio-3.5.2.tgz

    displayed in the output of a successful install. Existing secret ---------- Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 08 00:29:26 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/legacy.yaml

              keys:
                - name: key1
                  secret: c2VjcmV0IGlzIHNlY3VyZQ==
                - name: key2
                  secret: dGhpcyBpcyBwYXNzd29yZA==
          - kms:
              name: testprovider
              endpoint: unix:///tmp/testprovider.sock
              cachesize: 10
          - aescbc:
              keys:
                - name: key1
                  secret: c2VjcmV0IGlzIHNlY3VyZQ==
                - name: key2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 21:59:25 UTC 2019
    - 729 bytes
    - Viewed (0)
  9. src/crypto/tls/prf.go

    	"fmt"
    	"hash"
    )
    
    // Split a premaster secret in two as specified in RFC 4346, Section 5.
    func splitPreMasterSecret(secret []byte) (s1, s2 []byte) {
    	s1 = secret[0 : (len(secret)+1)/2]
    	s2 = secret[len(secret)/2:]
    	return
    }
    
    // pHash implements the P_hash function, as defined in RFC 4346, Section 5.
    func pHash(result, secret, seed []byte, hash func() hash.Hash) {
    	h := hmac.New(hash, secret)
    	h.Write(seed)
    	a := h.Sum(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 16:29:49 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.9.tgz

    displayed in the output of a successful install. ### Existing secret Instead of having this chart create the secret for you, you can supply a preexisting secret, much like an existing PersistentVolumeClai. First, create the secret: ```bash kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz --from-literal=rootPassword=foobarbazqux ``` Then install the chart, specifying that you want to use an existing secret: ```bash helm install --set existingSecret=my-minio-secret minio/minio...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 03 06:23:26 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top