Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare monorepo flytectl #23

Merged
merged 357 commits into from
Apr 30, 2024
Merged

Prepare monorepo flytectl #23

merged 357 commits into from
Apr 30, 2024

Conversation

eapolinario
Copy link
Owner

Tracking issue

https://github.com/flyteorg/flyte/issues/

Why are the changes needed?

What changes were proposed in this pull request?

How was this patch tested?

Setup process

Screenshots

Check all the applicable boxes

  • I updated the documentation accordingly.
  • All new and existing tests passed.
  • All commits are signed-off.

Related PRs

Docs link

yindia and others added 30 commits July 12, 2021 23:21
* Exclude generated file from unit test

Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>

Co-authored-by: evalsocket <[email protected]>
* fix sandbox start if sandbox exist

Signed-off-by: Yuvraj <[email protected]>
* Added node execution data to show inputs and outputs

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Added closure class

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Removed the old wrapper classes

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Uncommented the task exec closure

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Fixed unit tests for the closure classes

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* go mod tidy

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Adding .gitattribute file to contain rule for .rst files

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Adding gen path to .gitattr

Signed-off-by: Prafulla Mahindrakar <[email protected]>

* Added comments to new structs

Signed-off-by: Prafulla Mahindrakar <[email protected]>
* fix gcp parameters... s3 -> google

Signed-off-by: Bruce Arctor <[email protected]>

* change s3 to google for gcs docs

Signed-off-by: Bruce Arctor <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>

Co-authored-by: kumare3 <[email protected]>
…#150)

* Added setup flytedir before config init

Signed-off-by: Yuvraj <[email protected]>
* code-of-conduct

Signed-off-by: Samhita Alla <[email protected]>

* boilerplate

Signed-off-by: Samhita Alla <[email protected]>
* Added k8s check in sandbox
* Added upgrade command

Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>

Co-authored-by: pmahindrakar-oss <[email protected]>
* Added version compare check and bug fix in sandbox start

Signed-off-by: Yuvraj <[email protected]>
Signed-off-by: Flyte-Bot <[email protected]>

Co-authored-by: evalsocket <[email protected]>
Update current video to a shorter version specifically edited to be embedded in the docs.
…flyteorg#168)

`flytectl get task/workflow/launchplan -o table` panics if resource has no expected output.
We encountered `FormatVariableDescriptions at pkg/printer/printer.go:173` to panic when using
the get commands on a resource without expected output.
This happened with both explicit table output as well as default.

Replicated on lastest master, workflow demo-1.no-output has no expected output:

```
$ go run ./main.go get launchplans -p demo-1 -d production --latest demo-1.no-output

panic: assignment to entry in nil map

goroutine 1 [running]:
github.com/flyteorg/flytectl/pkg/printer.FormatVariableDescriptions(0x0)
	/workspace/flyteorg/flytectl/pkg/printer/printer.go:202 +0x307
github.com/flyteorg/flytectl/cmd/get.LaunchplanToTableProtoMessages({0xc000a30938, 0x1, 0x7ffeefbff977})
	/workspace/flyteorg/flytectl/cmd/get/launch_plan.go:136 +0xee
github.com/flyteorg/flytectl/cmd/get.getLaunchPlanFunc({0x2dfbf98, 0xc0000580b8}, {0xc0002fb8c0, 0x1, 0x11519b4}, {{0x2e55850, 0xc000a30120}, {0x2e472c0, 0xc0009a3110}, {0x2ddff60, ...}, ...})
	/workspace/flyteorg/flytectl/cmd/get/launch_plan.go:158 +0x307
github.com/flyteorg/flytectl/cmd/core.generateCommandFunc.func1(0xc000481680, {0xc0002fb8c0, 0x1, 0x6})
	/workspace/flyteorg/flytectl/cmd/core/cmd.go:69 +0x47d
github.com/spf13/cobra.(*Command).execute(0xc000481680, {0xc0002fb860, 0x6, 0x6})
	/workspace/go/pkg/mod/github.com/spf13/[email protected]/command.go:852 +0x60e
github.com/spf13/cobra.(*Command).ExecuteC(0xc000480000)
	/workspace/go/pkg/mod/github.com/spf13/[email protected]/command.go:960 +0x3ad
github.com/spf13/cobra.(*Command).Execute(...)
	/workspace/go/pkg/mod/github.com/spf13/[email protected]/command.go:897
github.com/flyteorg/flytectl/cmd.ExecuteCmd()
	/workspace/flyteorg/flytectl/cmd/root.go:135 +0x1e
main.main()
	/workspace/flyteorg/flytectl/main.go:12 +0x1d
exit status 2
```

Simple fix:
nil checks exists for container but not on the map itself prior to calling, and nil input causes the panic.
Added nil check on map parameter prior to calling in all places found.

Signed-off-by: Viktor Gerdin <[email protected]>
* Added launchplan update command and moved namedentity

Signed-off-by: Prafulla Mahindrakar <[email protected]>
mcanueste and others added 29 commits November 1, 2023 09:07
Before, updating some field (i.e. `Description`) of an `Archived` project causes the project state to
change to `Active`. This is caused by a bug in the `updateProjectsFunc` function used for the `update` command.

During project updates, `edited`, a default project created based on the given configs/flags,
comes with `admin.Project_ACTIVE` state by default if both `activate` and `archive` flags 
have not been set. 

Then a `copy` of the target project will be updated based on `edited` and then used for showing
the diff. In the current implementation, the state of the `copy` is set to be the same as `edited` 
projects state, which is `Project_ACTIVE` if no flags are set.

Also, after showing the diff, the `edited` is used for updating the project. Since it comes
with `Project_ACTIVE` state by default, the target project will be updated to have `Project_ACTIVE`
if both `activate` and `archive` flags are unset, regardless of the projects previous state.

On this PR, we make sure we set the correct state to both `copy` and `edited` by checking 
if  both `activate` and `archive` flags are set/unset. If one of the flags are set, we update target
project state (`copy`) based on the `edited` state since it will have the desired state. If both
flags are unset, we set the `edited` state to be the same as target (`copy`) state. This way, updating
`archived` projects will not change their state.

Signed-off-by: mcanueste <[email protected]>
* Misc cleanups to aesthetics

Signed-off-by: Jeev B <[email protected]>

* make generate

Signed-off-by: Jeev B <[email protected]>

* Fix getting started test

Signed-off-by: Jeev B <[email protected]>

* Fix tests

Signed-off-by: Jeev B <[email protected]>

* Free up space in github runner for getting started test

Signed-off-by: Jeev B <[email protected]>

* Check for pod ready condition instead of just phase

Signed-off-by: Jeev B <[email protected]>

* Fix test

Signed-off-by: Jeev B <[email protected]>

* Add a short sleep for sandbox to be ready to serve requests

Signed-off-by: Jeev B <[email protected]>

---------

Signed-off-by: Jeev B <[email protected]>
…teorg#440)

* Updated Sandbox config, with automated data configuration

Signed-off-by: Ketan Umare <[email protected]>

* updated password

Signed-off-by: Ketan Umare <[email protected]>

* updated

Signed-off-by: Ketan Umare <[email protected]>

* Fix tests

Signed-off-by: Eduardo Apolinario <[email protected]>

* Add unit-test

Signed-off-by: Eduardo Apolinario <[email protected]>

---------

Signed-off-by: Ketan Umare <[email protected]>
Signed-off-by: Eduardo Apolinario <[email protected]>
Co-authored-by: Eduardo Apolinario <[email protected]>
flyteorg#3458 Include default MinIO credentials in sandbox console readout

Signed-off-by: Ruslan Gainanov <[email protected]>
* add monodocs build to ci in flytectl

Signed-off-by: Niels Bantilan <[email protected]>

* update name

Signed-off-by: Niels Bantilan <[email protected]>

---------

Signed-off-by: Niels Bantilan <[email protected]>
* update monodocs build ci with dev build, increase verbosity

Signed-off-by: Niels Bantilan <[email protected]>

* remove env var

Signed-off-by: Niels Bantilan <[email protected]>

---------

Signed-off-by: Niels Bantilan <[email protected]>
The following vulnerabilities are fixed by pinning transitive dependencies:
- https://snyk.io/vuln/SNYK-PYTHON-CERTIFI-5805047

Co-authored-by: snyk-bot <[email protected]>
* Rename --archive to --deactivate in update launchplan

Signed-off-by: asoundarya96 <[email protected]>

* Rename --archive to --deactivate in update launchplan

Signed-off-by: asoundarya96 <[email protected]>

* Keep --archive as deprecated flag

Signed-off-by: asoundarya96 <[email protected]>

* make generate

Signed-off-by: Eduardo Apolinario <[email protected]>

---------

Signed-off-by: asoundarya96 <[email protected]>
Signed-off-by: Eduardo Apolinario <[email protected]>
Co-authored-by: Eduardo Apolinario <[email protected]>
Signed-off-by: Niels Bantilan <[email protected]>
* project-archive-with-yaml

Signed-off-by: Peeter Piegaze <[email protected]>

* fix syntax

Signed-off-by: Peeter Piegaze <[email protected]>

* fix list

Signed-off-by: Peeter Piegaze <[email protected]>

* update generated

Signed-off-by: Peeter Piegaze <[email protected]>

---------

Signed-off-by: Peeter Piegaze <[email protected]>
* feat: add pagination for get execution (draft)

Signed-off-by: zychen5186 <[email protected]>

fix: catches existing commands in os.Args

Signed-off-by: zychen5186 <[email protected]>

fix: restore neccessary codes

Signed-off-by: zychen5186 <[email protected]>

* feat: use -i to trigger bubbletea, add pagination for get execution

Signed-off-by: zychen5186 <[email protected]>

* change dot to arabic paging format

Signed-off-by: zychen5186 <[email protected]>

change dot to arabic paging format

Signed-off-by: zychen5186 <[email protected]>

change var names

Signed-off-by: zychen5186 <[email protected]>

fix: lint

Signed-off-by: zychen5186 <[email protected]>

* reuse JSONToTable

Signed-off-by: zychen5186 <[email protected]>

* reuse JSONToTable

Signed-off-by: zychen5186 <[email protected]>

change := to var

Signed-off-by: zychen5186 <[email protected]>

* keep original format when not using bubbletea

Signed-off-by: zychen5186 <[email protected]>

* improve readability and no functionality is changed

Signed-off-by: zychen5186 <[email protected]>

---------

Signed-off-by: zychen5186 <[email protected]>
Signed-off-by: Eduardo Apolinario <[email protected]>
Co-authored-by: Eduardo Apolinario <[email protected]>
…pare-monorepo--flytectl

Signed-off-by: Eduardo Apolinario <[email protected]>
@eapolinario eapolinario merged commit 1202625 into master Apr 30, 2024
16 of 19 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.