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

Commit

Permalink
Merge remote-tracking branch 'origin/master' into entity-descriptions
Browse files Browse the repository at this point in the history
* origin/master:
  Metadata url and base url as items in the auth context (#33)
  OAuth2 (#8)
  Log links merging logic should take log link names into account (#32)
  Generic type support in workflow compiler (#31)
  Fix invalid filter function error message (#30)
  Support postgres extra options [gcp] (#27)
  Fix no auth provider [gcp] (#28)
  • Loading branch information
schottra committed Nov 14, 2019
2 parents 2313767 + 5cd1bfd commit eb8dc13
Show file tree
Hide file tree
Showing 38 changed files with 2,645 additions and 346 deletions.
95 changes: 81 additions & 14 deletions Gopkg.lock

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

12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,20 @@ linux_compile:

.PHONY: server
server:
go run cmd/main.go --logtostderr --application.kube-config ~/.kube/config --config flyteadmin_config.yaml serve
go run cmd/main.go --logtostderr --server.kube-config ~/.kube/config --config ~/flyteadmin_config.yaml serve

.PHONY: migrate
migrate:
go run cmd/main.go --logtostderr --application.kube-config ~/.kube/config --config flyteadmin_config.yaml migrate run
go run cmd/main.go --logtostderr --server.kube-config ~/.kube/config --config flyteadmin_config.yaml migrate run

.PHONY: seed_projects
seed_projects:
go run cmd/main.go --logtostderr --application.kube-config ~/.kube/config --config flyteadmin_config.yaml migrate seed-projects project admintests flytekit
go run cmd/main.go --logtostderr --server.kube-config ~/.kube/config --config flyteadmin_config.yaml migrate seed-projects project admintests flytekit

all: compile

generate:
which pflags || (go get github.com/lyft/flytestdlib/cli/pflags)
which mockery || (go get github.com/enghabu/mockery/cmd/mockery)
which enumer || (go get github.com/alvaroloes/enumer)
@go generate ./...
Loading

0 comments on commit eb8dc13

Please sign in to comment.