This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into latest_merge
- Loading branch information
Showing
56 changed files
with
1,089 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
Flyteadmin | ||
============= | ||
[![Current Release](https://img.shields.io/github/release/flyteorg/flyteadmin.svg)](https://github.com/flyteorg/flyteadmin/releases/latest) | ||
![Master](https://github.com/flyteorg/flyteadmin/workflows/Master/badge.svg) | ||
[![GoDoc](https://godoc.org/github.com/lyft/flyteadmin?status.svg)](https://pkg.go.dev/mod/github.com/lyft/flyteadmin) | ||
[![License](https://img.shields.io/badge/LICENSE-Apache2.0-ff69b4.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) | ||
[![CodeCoverage](https://img.shields.io/codecov/c/github/flyteorg/flyteadmin.svg)](https://codecov.io/gh/flyteorg/flyteadmin) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/lyft/flyteadmin)](https://goreportcard.com/report/github.com/lyft/flyteadmin) | ||
![Commit activity](https://img.shields.io/github/commit-activity/w/flyteorg/flyteadmin.svg?style=plastic) | ||
![Commit since last release](https://img.shields.io/github/commits-since/flyteorg/flyteadmin/latest.svg?style=plastic) | ||
|
||
Flyteadmin is the control plane for Flyte responsible for managing entities (task, workflows, launch plans) and | ||
administering workflow executions. Flyteadmin implements the | ||
[AdminService](https://github.com/flyteorg/flyteidl/blob/master/protos/flyteidl/service/admin.proto) which | ||
defines a stateless REST/gRPC service for interacting with registered Flyte entities and executions. | ||
Flyteadmin uses a relational style Metadata Store abstracted by [GORM](http://gorm.io/) ORM library. | ||
|
||
Before Check-In | ||
--------------- | ||
|
||
Flyte Admin has a few useful make targets for linting and testing. Please use these before checking in to help suss out | ||
minor bugs and linting errors. | ||
|
||
``` | ||
$ make goimports | ||
``` | ||
|
||
``` | ||
$ make test_unit | ||
``` | ||
|
||
``` | ||
$ make lint | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,13 @@ server: | |
grpcServerReflection: true | ||
security: | ||
secure: false | ||
ssl: | ||
certificateFile: "/path/to/server.pem" | ||
keyFile: "/path/to/server.key" | ||
useAuth: false | ||
allowCors: true | ||
allowedOrigins: | ||
# Accepting all domains for Sandbox installation | ||
- "*" | ||
allowedHeaders: | ||
- "Content-Type" | ||
oauth: | ||
clientId: yourclientid | ||
clientSecretFile: "/path/to/oauth/secret" | ||
|
@@ -73,11 +76,19 @@ notifications: | |
accountId: "bar" | ||
emailer: | ||
subject: "Notice: Execution \"{{ name }}\" has {{ phase }} in \"{{ domain }}\"." | ||
sender: "[email protected]" | ||
sender: "[email protected]" | ||
body: > | ||
Execution \"{{ name }}\" has {{ phase }} in \"{{ domain }}\". View details at | ||
<a href=\http://example.com/projects/{{ project }}/domains/{{ domain }}/executions/{{ name }}> | ||
http://example.com/projects/{{ project }}/domains/{{ domain }}/executions/{{ name }}</a>. {{ error }} | ||
externalEvents: | ||
Enable: false | ||
type: gcp | ||
gcp: | ||
projectId: "foo" | ||
eventsPublisher: | ||
topicName: "bar" | ||
eventTypes: all | ||
Logger: | ||
show-source: true | ||
level: 6 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.