Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for serviceAccountToken (0.33 sec)

  1. plugin/pkg/admission/serviceaccount/admission.go

    		}
    		for _, v := range pod.Spec.Volumes {
    			if proj := v.Projected; proj != nil {
    				for _, projSource := range proj.Sources {
    					if projSource.ServiceAccountToken != nil {
    						return admission.NewForbidden(a, fmt.Errorf("a mirror pod may not use ServiceAccountToken volume projections"))
    					}
    				}
    			}
    		}
    		return nil
    	}
    
    	// Require container pods to have service accounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/list.yaml.injected

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

              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
              name: istio-ca-root-cert
            name: istiod-ca-cert
    status: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected.go

    			if err != nil {
    				errlist = append(errlist, err)
    				continue
    			}
    			for k, v := range downwardAPIPayload {
    				payload[k] = v
    			}
    		case source.ServiceAccountToken != nil:
    			tp := source.ServiceAccountToken
    
    			// When FsGroup is set, we depend on SetVolumeOwnership to
    			// change from 0600 to 0640.
    			mode := *s.source.DefaultMode
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/waypoint.yaml

              - fieldRef:
                  fieldPath: metadata.annotations
                path: annotations
            name: istio-podinfo
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
                  expirationSeconds: 43200
                  path: istio-token
          - configMap:
              name: istio-ca-root-cert
            name: istiod-ca-cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/deployment.yaml

          - name: istio-envoy
            emptyDir: {}
          - name: istio-data
            emptyDir: {}
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  path: istio-token
                  expirationSeconds: 43200
                  audience: {{ .Values.global.sds.token.aud }}
          {{- if .Values.global.mountMtlsCerts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

          - name: istio-envoy
            emptyDir: {}
          - name: istio-data
            emptyDir: {}
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  path: istio-token
                  expirationSeconds: 43200
                  audience: {{ .Values.global.sds.token.aud }}
          {{- if .Values.global.mountMtlsCerts }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

                - path: "annotations"
                  fieldRef:
                    fieldPath: metadata.annotations
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  path: istio-token
                  expirationSeconds: 43200
                  audience: {{ .Values.global.sds.token.aud }}
          {{- if eq .Values.global.pilotCertProvider "istiod" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/tokens_controller.go

    				UpdateFunc: e.queueSecretUpdateSync,
    				DeleteFunc: e.queueSecretSync,
    			},
    		},
    		options.SecretResync,
    	)
    
    	return e, nil
    }
    
    // TokensController manages ServiceAccountToken secrets for ServiceAccount objects
    type TokensController struct {
    	client clientset.Interface
    	token  serviceaccount.TokenGenerator
    
    	rootCA []byte
    
    	serviceAccounts listersv1.ServiceAccountLister
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. plugin/pkg/admission/serviceaccount/admission_test.go

    			},
    		},
    		Spec: api.PodSpec{
    			Volumes: []api.Volume{
    				{VolumeSource: api.VolumeSource{
    					Projected: &api.ProjectedVolumeSource{
    						Sources: []api.VolumeProjection{{ServiceAccountToken: &api.ServiceAccountTokenProjection{}}},
    					},
    				},
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
Back to top