Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,483 for projected (0.25 sec)

  1. pkg/volume/projected/projected.go

    	return nil
    }
    
    func getVolumeSource(spec *volume.Spec) (*v1.ProjectedVolumeSource, bool, error) {
    	if spec.Volume != nil && spec.Volume.Projected != nil {
    		return spec.Volume.Projected, spec.ReadOnly, nil
    	}
    
    	return nil, false, fmt.Errorf("Spec does not reference a projected volume type")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/api/pod/util.go

    			if source.FlexVolume.SecretRef != nil && !visitor(source.FlexVolume.SecretRef.Name) {
    				return false
    			}
    		case source.Projected != nil:
    			for j := range source.Projected.Sources {
    				if source.Projected.Sources[j].Secret != nil {
    					if !visitor(source.Projected.Sources[j].Secret.Name) {
    						return false
    					}
    				}
    			}
    		case source.RBD != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins.go

    	"k8s.io/kubernetes/pkg/volume/git_repo"
    	"k8s.io/kubernetes/pkg/volume/hostpath"
    	"k8s.io/kubernetes/pkg/volume/iscsi"
    	"k8s.io/kubernetes/pkg/volume/local"
    	"k8s.io/kubernetes/pkg/volume/nfs"
    	"k8s.io/kubernetes/pkg/volume/projected"
    	"k8s.io/kubernetes/pkg/volume/secret"
    )
    
    // ProbeVolumePlugins collects all volume plugins into an easy to use list.
    func ProbeVolumePlugins(featureGate featuregate.FeatureGate) ([]volume.VolumePlugin, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

                initialDelaySeconds: 15
                timeoutSeconds: 15
          serviceAccountName: konnectivity-agent
          volumes:
    __EXTRA_VOLS__
            - name: konnectivity-agent-token
              projected:
                sources:
                  - serviceAccountToken:
                      path: konnectivity-agent-token
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

            operator: Exists
          - key: CriticalAddonsOnly
            operator: Exists
          - effect: NoExecute
            operator: Exists
          volumes:
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    							Name: "Spec.Volumes[*].VolumeSource.FlexVolume.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					Projected: &api.ProjectedVolumeSource{
    						Sources: []api.VolumeProjection{{
    							Secret: &api.SecretProjection{
    								LocalObjectReference: api.LocalObjectReference{
    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].Secret"}}}}}}}, {
    				VolumeSource: api.VolumeSource{
    					RBD: &api.RBDVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pkg/kubemark/hollow_kubelet.go

    	"k8s.io/kubernetes/pkg/volume/hostpath"
    	"k8s.io/kubernetes/pkg/volume/iscsi"
    	"k8s.io/kubernetes/pkg/volume/local"
    	"k8s.io/kubernetes/pkg/volume/nfs"
    	"k8s.io/kubernetes/pkg/volume/portworx"
    	"k8s.io/kubernetes/pkg/volume/projected"
    	"k8s.io/kubernetes/pkg/volume/secret"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/kubernetes/test/utils"
    )
    
    type HollowKubelet struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/list.yaml.injected

                  path: labels
                - fieldRef:
                    fieldPath: metadata.annotations
                  path: annotations
              name: istio-podinfo
            - name: istio-token
              projected:
                sources:
                - serviceAccountToken:
                    audience: istio-ca
                    expirationSeconds: 43200
                    path: istio-token
            - configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/gateway.yaml.injected

                path: labels
              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top