kfp_test_invalid_component.yaml 302 B

123456789101112131415
  1. name: Test Invalid Operator
  2. inputs:
  3. - {name: 2, description: 'The test command description', type: String}
  4. outputs:
  5. - {name: Filtered text}
  6. implementation:
  7. container:
  8. image: alpine
  9. command:
  10. - sh
  11. - -ec
  12. - |
  13. text_path=$0
  14. - {inputValue: 2}
  15. - {outputPath: Filtered text}