Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DisableAutomountSAToken (0.56 sec)

  1. pkg/test/framework/components/echo/common/deployment/echos.go

    	return g.Wait()
    }
    
    func (c *Config) DefaultEchoConfigs(t resource.Context) []echo.Config {
    	var defaultConfigs []echo.Config
    
    	disableAutomountSAToken := true
    	if t.Settings().Revisions.Minimum() < "1.16" {
    		disableAutomountSAToken = false
    	}
    
    	a := echo.Config{
    		Service:                 ASvc,
    		ServiceAccount:          true,
    		Ports:                   ports.All(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/templates/deployment.yaml

            maxSkew: 1
            labelSelector:
              matchLabels:
                app: {{ $.Service }}
    {{- end }}
    {{- if $.ServiceAccount }}
          serviceAccountName: {{ $.Service }}
    {{- end }}
    {{- if $.DisableAutomountSAToken }}
          automountServiceAccountToken: false
    {{- end}}
    {{- if ne $.ImagePullSecretName "" }}
          imagePullSecrets:
          - name: {{ $.ImagePullSecretName }}
    {{- end }}
          containers:
    {{- if and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	StaticAddresses []string
    
    	// ServiceAccount (k8s only) indicates that a service account should be created
    	// for the deployment.
    	ServiceAccount bool
    
    	// DisableAutomountSAToken indicates to opt out of auto mounting ServiceAccount's API credentials
    	DisableAutomountSAToken bool
    
    	// Ports for this application. Port numbers may or may not be used, depending
    	// on the implementation.
    	Ports Ports
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    		"ProxylessGRPC":           cfg.IsProxylessGRPC(),
    		"GRPCMagicPort":           grpcMagicPort,
    		"Locality":                cfg.Locality,
    		"ServiceAccount":          cfg.ServiceAccount,
    		"DisableAutomountSAToken": cfg.DisableAutomountSAToken,
    		"AppContainers":           appContainers,
    		"ContainerPorts":          containerPorts,
    		"Subsets":                 cfg.Subsets,
    		"TLSSettings":             cfg.TLSSettings,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top