Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tests/integration/pilot/analyze_test.go

    			// testdata/some-dir/missing-gateway.yaml and get a
    			// SchemaValidationError (if we did recurse, we'd get a
    			// UnknownAnnotation as well).
    			output, err := istioctlSafe(t, istioCtl, ns.Name(), false, "--recursive=false", dirWithConfig)
    			expectMessages(t, g, output, msg.SchemaValidationError)
    			g.Expect(err).To(BeIdenticalTo(analyzerFoundIssuesError))
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	// SchemaValidationError defines a diag.MessageType for message "SchemaValidationError".
    	// Description: The resource has a schema validation error.
    	SchemaValidationError = diag.NewMessageType(diag.Error, "IST0106", "Schema validation error: %v")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        args:
          - name: podName
            type: string
    
      # IST0104 RETIRED
      # IST0105 RETIRED
    
      - name: "SchemaValidationError"
        code: IST0106
        level: Error
        description: "The resource has a schema validation error."
        template: "Schema validation error: %v"
        args:
          - name: err
            type: error
    
    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