2
0

job.go 893 B

123456789101112131415161718192021222324
  1. package v2
  2. import (
  3. "context"
  4. "fmt"
  5. )
  6. // BatchImageUpdate implements the functionality of the `porter job update-images` command for validate apply v2 projects
  7. func BatchImageUpdate(ctx context.Context) error {
  8. fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
  9. return nil
  10. }
  11. // WaitForJob implements the functionality of the `porter job wait` command for validate apply v2 projects
  12. func WaitForJob(ctx context.Context) error {
  13. fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
  14. return nil
  15. }
  16. // RunJob implements the functionality of the `porter job run` command for validate apply v2 projects
  17. func RunJob(ctx context.Context) error {
  18. fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
  19. return nil
  20. }