Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MisplacedAnnotation (0.26 sec)

  1. pkg/config/analysis/msg/messages.gen.go

    	SchemaValidationError = diag.NewMessageType(diag.Error, "IST0106", "Schema validation error: %v")
    
    	// 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")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.UnknownAnnotation, "Service httpbin"},
    			{msg.InvalidAnnotation, "Pod invalid-annotations"},
    			{msg.MisplacedAnnotation, "Pod grafana-test"},
    			{msg.MisplacedAnnotation, "Deployment fortio-deploy"},
    			{msg.MisplacedAnnotation, "Namespace staging"},
    			{msg.DeprecatedAnnotation, "Deployment fortio-deploy"},
    		},
    	},
    	{
    		name: "alpha",
    		inputFiles: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. istioctl/pkg/analyze/analyze.go

      istioctl analyze -S "IST0103=Pod mypod.testing"
    
      # 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`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        code: IST0106
        level: Error
        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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top