Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,396 for secret1 (0.34 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types_encryption.go

    }
    
    // Key contains name and secret of the provided key for a transformer.
    type Key struct {
    	// name is the name of the key to be used while storing data to disk.
    	Name string
    	// secret is the actual key, encoded in base64.
    	Secret string
    }
    
    // String implements Stringer interface in a log safe way.
    func (k Key) String() string {
    	return fmt.Sprintf("Name: %s, Secret: [REDACTED]", k.Name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

          volumes:
          - name: kiali-configuration
            configMap:
              name: kiali
          - name: kiali-cert
            secret:
              secretName: istio.kiali-service-account
              optional: true
          - name: kiali-secret
            secret:
              secretName: kiali
              optional: true
          - name: kiali-cabundle
            configMap:
              name: kiali-cabundle
              optional: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. releasenotes/notes/credential-name-support-egress-sidecar.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to set credentialName based secret configuration
         at sidecars for egress TLS traffic when WorkloadSelector is specified in `DestinationRule`,
         provided the sidecar has permission to list secrets in the namespace where it resides.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:56:05 UTC 2022
    - 435 bytes
    - Viewed (0)
  4. pkg/registry/core/serviceaccount/storage/token.go

    			}
    			node = nodeObj.(*api.Node)
    			uid = node.UID
    		case gvk.Group == "" && gvk.Kind == "Secret":
    			newCtx := newContext(ctx, "secrets", ref.Name, namespace, gvk)
    			secretObj, err := r.secrets.Get(newCtx, ref.Name, &metav1.GetOptions{})
    			if err != nil {
    				return nil, err
    			}
    			secret = secretObj.(*api.Secret)
    			uid = secret.UID
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. helm/minio/templates/deployment.yaml

              {{- else }}
              emptyDir: {}
              {{- end }}
            {{- if .Values.extraSecret }}
            - name: extra-secret
              secret:
                secretName: {{ .Values.extraSecret }}
            {{- end }}
            - name: minio-user
              secret:
                secretName: {{ template "minio.secretName" . }}
            {{- include "minio.tlsKeysVolume" . | indent 8 }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. pkg/registry/core/secret/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	secret := validNewSecret("foo")
    	secret.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo-"}
    	test.TestCreate(
    		// valid
    		secret,
    		// invalid
    		&api.Secret{},
    		&api.Secret{
    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    			Data:       map[string][]byte{"name with spaces": []byte("")},
    		},
    		&api.Secret{
    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    // BootstrapTokenFromSecret returns a BootstrapToken object from the given Secret
    func BootstrapTokenFromSecret(secret *v1.Secret) (*BootstrapToken, error) {
    	// Get the Token ID field from the Secret data
    	tokenID := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if len(tokenID) == 0 {
    		return nil, errors.Errorf("bootstrap Token Secret has no token-id data: %s", secret.Name)
    	}
    
    	// Enforce the right naming convention
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top