Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Added GateNode message #296

Merged
merged 25 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
2bd2e09
added GateNode message
hamersaw May 3, 2022
d49aa5d
Merge branch 'master' into feature/gate-nodes
hamersaw May 9, 2022
214188f
added signal service
hamersaw May 10, 2022
36e4040
fleshed out Signal service
hamersaw May 12, 2022
e0f7d8a
updated signal service with a GetOrCreateSignal and SetSignal API
hamersaw May 12, 2022
d6967ea
updated signal service api to use GetOrCreate semantics
hamersaw May 13, 2022
89e13ff
added the ListSignals API
hamersaw Jun 9, 2022
4affa79
fixed SignalListResponse proto name
hamersaw Jun 9, 2022
22bce35
set HTTP API parameters
hamersaw Jun 9, 2022
0a5e035
generated protos
hamersaw Jun 9, 2022
3b6d0f6
Merge branch 'master' into feature/gate-nodes
hamersaw Jun 9, 2022
2c07f85
documented GateNode
hamersaw Jun 9, 2022
829ec07
updated signal list API
hamersaw Jun 13, 2022
10be031
filled out signal list api
hamersaw Jun 13, 2022
6044d6f
addressing pr comments on docs
hamersaw Jun 16, 2022
fcce430
added an output variable name to the signal condition
hamersaw Jun 22, 2022
e34dc42
reworded signal condition docs
hamersaw Aug 15, 2022
18f9ff3
added ApproveCondition to GateNode
hamersaw Sep 26, 2022
d58fb68
Merge branch 'master' into feature/gate-nodes
hamersaw Sep 27, 2022
0f00abe
removed authOpt
hamersaw Sep 27, 2022
75ff73a
Merge branch 'master' into feature/gate-nodes
hamersaw Oct 10, 2022
d0014cc
fixed types
hamersaw Oct 11, 2022
dc9605c
Merge branch 'master' into feature/gate-nodes
hamersaw Oct 11, 2022
30fed9f
updated doc_gen_deps to fix docs generation
hamersaw Oct 12, 2022
d5b8572
Merge branch 'master' into feature/gate-nodes
hamersaw Oct 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions clients/go/admin/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ type Clientset struct {
identityServiceClient service.IdentityServiceClient
dataProxyServiceClient service.DataProxyServiceClient
authOpt grpc.DialOption
signalServiceClient service.SignalServiceClient
}

func (c Clientset) AuthOpt() grpc.DialOption {
Expand Down Expand Up @@ -60,6 +61,10 @@ func (c Clientset) DataProxyClient() service.DataProxyServiceClient {
return c.dataProxyServiceClient
}

func (c Clientset) SignalServiceClient() service.SignalServiceClient {
return c.signalServiceClient
}

func NewAdminClient(ctx context.Context, conn *grpc.ClientConn) service.AdminServiceClient {
logger.Infof(ctx, "Initialized Admin client")
return service.NewAdminServiceClient(conn)
Expand Down Expand Up @@ -207,6 +212,7 @@ func initializeClients(ctx context.Context, cfg *Config, tokenCache pkce.TokenCa
cs.identityServiceClient = service.NewIdentityServiceClient(adminConnection)
cs.healthServiceClient = grpc_health_v1.NewHealthClient(adminConnection)
cs.dataProxyServiceClient = service.NewDataProxyServiceClient(adminConnection)
cs.signalServiceClient = service.NewSignalServiceClient(adminConnection)
if authOpt != nil {
cs.authOpt = authOpt
}
Expand Down
24 changes: 24 additions & 0 deletions gen/pb-cpp/flyteidl/admin/signal.grpc.pb.cc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions gen/pb-cpp/flyteidl/admin/signal.grpc.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2,603 changes: 2,603 additions & 0 deletions gen/pb-cpp/flyteidl/admin/signal.pb.cc

Large diffs are not rendered by default.

Loading