Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,396 for secret1 (0.21 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/flag_output_set_values.golden.yaml

              privileged: false
              readOnlyRootFilesystem: true
            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /etc/istio/proxy
              name: istio-envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

    		if kerrors.IsAlreadyExists(err) {
    			if _, err := kubeAccessor.Kube().CoreV1().Secrets(namespace.Name()).Update(context.TODO(), secret, metav1.UpdateOptions{}); err != nil {
    				return fmt.Errorf("failed updating secret %s: %v", secret.Name, err)
    			}
    		} else {
    			return fmt.Errorf("failed creating secret %s: %v", secret.Name, err)
    		}
    	}
    	return nil
    }
    
    func ReadCustomCertFromFile(certsPath string, f string) ([]byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/types_encryption.go

    	// Each key has to be 32 bytes long.
    	Keys []Key `json:"keys"`
    }
    
    // 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 `json:"name"`
    	// secret is the actual key, encoded in base64.
    	Secret string `json:"secret"`
    }
    
    // String implements Stringer interface in a log safe way.
    func (k Key) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/helm_values_enablement.golden.yaml

              privileged: false
              readOnlyRootFilesystem: true
            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /etc/istio/proxy
              name: istio-envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/aes/aes-gcm.yaml

    kind: EncryptionConfiguration
    apiVersion: apiserver.config.k8s.io/v1
    resources:
      - resources:
          - secrets
        providers:
          - aesgcm:
              keys:
                - name: key1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 14 21:59:25 UTC 2019
    - 229 bytes
    - Viewed (0)
  6. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

    - |
      **Improved** Pilot will now load its DNS serving certificate from well known locations:
      ```
      /var/run/secrets/istiod/tls/tls.crt
      /var/run/secrets/istiod/tls/tls.key
      /var/run/secrets/istiod/ca/root-cert.pem
      ```
      The CA path will alternatively be loaded from: `/var/run/secrets/tls/ca.crt`
      It also automatically loads any secret called istiod-tls and the istio-root-ca-configmap into those paths.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/testdata/encryption-configs/no-kms-provider.yaml

    kind: EncryptionConfiguration
    apiVersion: apiserver.config.k8s.io/v1
    resources:
      - resources:
          - secrets
        providers:
        - aesgcm:
            keys:
            - name: key1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 17:03:18 UTC 2022
    - 218 bytes
    - Viewed (0)
  8. helm/minio/templates/post-job.yaml

                          path: secrets/{{ tpl .existingSecret $ }}/{{ tpl .existingSecretKey $ }}
                  {{- end }}
                  {{- end }}
                  {{- range ( default list .Values.svcaccts ) }}
                  {{- if .existingSecret }}
                  - secret:
                      name: {{ tpl .existingSecret $ }}
                      items:
                        - key: {{ .existingSecretKey }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jul 08 19:18:31 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    			log.Infof("IstioGenerated %s secret found, use it as the CA certificate", ca.CACertsSecret)
    
    			// TODO(jaellio): Currently, when the USE_CACERTS_FOR_SELF_SIGNED_CA flag is true istiod
    			// handles loading and updating the "cacerts" secret with the "istio-generated" key the
    			// same way it handles the "istio-ca-secret" secret. Isitod utilizes a secret watch instead
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. 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)
Back to top