| 123456789101112131415161718192021222324 |
- package v2
- import (
- "context"
- "fmt"
- )
- // BatchImageUpdate implements the functionality of the `porter job update-images` command for validate apply v2 projects
- func BatchImageUpdate(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // WaitForJob implements the functionality of the `porter job wait` command for validate apply v2 projects
- func WaitForJob(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
- // RunJob implements the functionality of the `porter job run` command for validate apply v2 projects
- func RunJob(ctx context.Context) error {
- fmt.Println("This command is not supported for your project. Contact support@porter.run for more information.")
- return nil
- }
|