Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,164 for Decref (0.24 sec)

  1. docs/security/README.md

    #### Cryptographic Primitives
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  2. pkg/controller/bootstrap/bootstrapsigner.go

    }
    
    func (e *Signer) listSecrets() []*v1.Secret {
    	secrets, err := e.secretLister.Secrets(e.secretNamespace).List(labels.Everything())
    	if err != nil {
    		utilruntime.HandleError(err)
    		return nil
    	}
    
    	items := []*v1.Secret{}
    	for _, secret := range secrets {
    		if secret.Type == bootstrapapi.SecretTypeBootstrapToken {
    			items = append(items, secret)
    		}
    	}
    	return items
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. pkg/volume/secret/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package secret contains the internal representation of secret volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 708 bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/sds/writer_test.go

    		expected   []string
    		unexpected []string
    	}{
    		{
    			name:       "test tabular output with no secret items is equivalent to the header",
    			format:     TABULAR,
    			items:      []SecretItem{},
    			expected:   []string{},
    			unexpected: secretItemColumns,
    		},
    		{
    			name:   "test tabular output with a single secret item",
    			format: TABULAR,
    			items: []SecretItem{
    				{
    					Name:        "olinger",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  5. internal/auth/credentials.go

    	// There is no max length enforcement for access keys
    	accessKeyMaxLen = 20
    
    	// Minimum length for MinIO secret key for both server
    	secretKeyMinLen = 8
    
    	// Maximum secret key length for MinIO, this
    	// is used when autogenerating new credentials.
    	// There is no max length enforcement for secret keys
    	secretKeyMaxLen = 40
    
    	// Alpha numeric table used for generating access keys.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	}
    }
    
    // TestRootCertRotatorWithoutRootCertSecret verifies that if root cert secret
    // does not exist, the rotator does not add new root cert.
    func TestRootCertRotatorWithoutRootCertSecret(t *testing.T) {
    	// Verifies that in self-signed CA mode, root cert rotator does not create CA secret.
    	rotator0 := getRootCertRotator(getDefaultSelfSignedIstioCAOptions(nil))
    	client0 := rotator0.config.client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. helm-releases/minio-3.6.6.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 Apr 17 21:46:44 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  8. helm-releases/minio-4.0.6.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 Jul 24 03:34:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/serviceaccount/admission.go

    	}
    	for _, volume := range pod.Spec.Volumes {
    		source := volume.VolumeSource
    		if source.Secret == nil {
    			continue
    		}
    		secretName := source.Secret.SecretName
    		if !mountableSecrets.Has(secretName) {
    			return fmt.Errorf("volume with secret.secretName=\"%s\" is not allowed because service account %s does not reference that secret", secretName, serviceAccount.Name)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. samples/jwt-server/jwt-server.yaml

    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: https
        port: 8443
        targetPort: 8443
      selector:
        app: jwt-server
    ---
    apiVersion: v1
    kind: Secret
    metadata:
      name: jwt-cert-key-secret
    # command to generate certificate
    # use the generated server.crt, server.key by following https://github.com/istio/istio/blob/master/samples/jwt-server/testdata/README.MD
    stringData: 
      server.crt: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top