Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IST0107 (0.15 sec)

  1. istioctl/pkg/analyze/analyze.go

      # Analyze the current live cluster and suppress PodMissingProxy for all pods in namespace 'testing',
      # and suppress MisplacedAnnotation on deployment foobar in namespace default.
      istioctl analyze -S "IST0103=Pod *.testing" -S "IST0107=Deployment foobar.default"
    
      # List available analyzers
      istioctl analyze -L`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			msgOutputFormat = strings.ToLower(msgOutputFormat)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        description: "The resource has a schema validation error."
        template: "Schema validation error: %v"
        args:
          - name: err
            type: error
    
      - name: "MisplacedAnnotation"
        code: IST0107
        level: Warning
        description: "An Istio annotation is applied to the wrong kind of resource."
        template: "Misplaced annotation: %s can only be applied to %s"
        args:
          - name: annotation
    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

    	// MisplacedAnnotation defines a diag.MessageType for message "MisplacedAnnotation".
    	// Description: An Istio annotation is applied to the wrong kind of resource.
    	MisplacedAnnotation = diag.NewMessageType(diag.Warning, "IST0107", "Misplaced annotation: %s can only be applied to %s")
    
    	// UnknownAnnotation defines a diag.MessageType for message "UnknownAnnotation".
    	// Description: An Istio annotation is not recognized for any kind of resource
    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