Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IST0144 (0.67 sec)

  1. pkg/config/analysis/analyzers/deployment/pod.go

    		return true
    	})
    }
    
    func (appUID *ApplicationUIDAnalyzer) analyzeAppUIDForPod(resource *resource.Instance, context analysis.Context) {
    	p := resource.Message.(*v1.PodSpec)
    	// Skip analyzing control plane for IST0144
    	if util.IsIstioControlPlane(resource) {
    		return
    	}
    	message := msg.NewInvalidApplicationUID(resource)
    
    	if p.SecurityContext != nil && p.SecurityContext.RunAsUser != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        template: "Port %v is exposed in a Service but listens on localhost. It will not be exposed to other pods."
        args:
          - name: port
            type: string
    
      - name: "InvalidApplicationUID"
        code: IST0144
        level: Warning
        description: "Application pods should not run as user ID (UID) 1337"
        template: "User ID (UID) 1337 is reserved for the sidecar proxy."
    
      - name: "ConflictingGateways"
        code: IST0145
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    	// InvalidApplicationUID defines a diag.MessageType for message "InvalidApplicationUID".
    	// Description: Application pods should not run as user ID (UID) 1337
    	InvalidApplicationUID = diag.NewMessageType(diag.Warning, "IST0144", "User ID (UID) 1337 is reserved for the sidecar proxy.")
    
    	// ConflictingGateways defines a diag.MessageType for message "ConflictingGateways".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top