forked from netlify/git-gateway
-
Notifications
You must be signed in to change notification settings - Fork 1
ORGANIC-443. Added Okta to git-gateway #1
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
Open
thomasyip
wants to merge
15
commits into
master
Choose a base branch
from
ORGANIC-389-Temp-Get-Git-Gateway-To-Work
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 7 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
da835ef
ORGANIC-443. Disabled lint that stops the build.
thomasyip 46b42ae
ORGANIC-443. Updated Dockerfile for new golang version. (needed for O…
thomasyip 151ec09
ORGANIC-443. !!Hacks introduced (not for production)!! Reimplemented …
thomasyip 60da7c1
ORGANIC-443. Fixed token key for REST to github.com. Confirmed github…
thomasyip fb04f6b
ORGANIC-443. Updated example.env that actual works.
thomasyip f643682
ORGANIC-443. Converted to use a smaller golang official image to spee…
thomasyip 5a7569d
ORGANIC-443. Added instructions to run git-gateway.
thomasyip 914448d
ORGANIC-467. Updated Dockerfile for build it slighlty faster.
thomasyip e70ec30
ORGANIC-467. Refactored authorization/authenication out of backends i…
thomasyip 5f0f6a4
ORGANIC-467. Restored authorize() capability.
thomasyip 163a708
ORGANIC-467. Added Okta JWT parser "properly", mostly.
thomasyip 76f77fe
ORGANIC-467. Added the option to specify Authenticator to use in env.
thomasyip ab11d60
ORGANIC-467. Added back golint.
thomasyip 8e77f81
ORGANIC-467. Updated README.md to make the instruction more general f…
thomasyip 9f58510
ORGANIC-467. Populated Claims from Okta with real values.
thomasyip File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.env | ||
my.env | ||
gorm.db | ||
vendor/ | ||
git-gateway | ||
|
This file contains hidden or 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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
FROM netlify/go-glide:v0.12.3 | ||
FROM golang:1.11.2-alpine3.8 | ||
|
||
ADD . /go/src/github.com/netlify/git-gateway | ||
|
||
RUN useradd -m netlify && cd /go/src/github.com/netlify/git-gateway && make deps build && mv git-gateway /usr/local/bin/ | ||
RUN apk update && apk add wget && rm -rf /var/cache/apk/* | ||
|
||
RUN apk add --update alpine-sdk | ||
|
||
RUN go get github.com/Masterminds/glide | ||
|
||
RUN adduser -D -u 1000 netlify && cd /go/src/github.com/netlify/git-gateway && make deps build && mv git-gateway /usr/local/bin/ | ||
|
||
USER netlify | ||
CMD ["git-gateway"] |
This file contains hidden or 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ CHECK_FILES?=$$(go list ./... | grep -v /vendor/) | |
help: ## Show this help. | ||
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {sub("\\\\n",sprintf("\n%22c"," "), $$2);printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) | ||
|
||
all: lint vet test build ## Run the tests and build the binary. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It works with newer golang version. It is reenabled. |
||
all: vet test build ## Run the tests and build the binary. | ||
|
||
build: ## Build the binary. | ||
go build -ldflags "-X github.com/netlify/git-gateway/cmd.Version=`git rev-parse HEAD`" | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1,12 +1,30 @@ | ||
GITGATEWAY_JWT_SECRET="CHANGE-THIS! VERY IMPORTANT!" | ||
# Warning: Many configuration would not work with quote (ie ""). | ||
|
||
# JWT Secret is not needed for RS256. Instead, issuer should be specified | ||
# (eg, https://dev-1234.oktapreview.com/oauth2/default) | ||
GITGATEWAY_JWT_SECRET= | ||
|
||
# @TODO - REQUIRED for Okta | ||
ISSUER= | ||
|
||
# @TODO - REQUIRED for Okta | ||
CLIENT_ID= | ||
|
||
AUD=api://default | ||
|
||
GITGATEWAY_DB_DRIVER=sqlite3 | ||
DATABASE_URL=gorm.db | ||
|
||
GITGATEWAY_API_HOST=localhost | ||
PORT=9999 | ||
# @TODO - Is there way to expose internal port from Docker? | ||
GITGATEWAY_API_HOST=0.0.0.0 | ||
PORT=8087 | ||
|
||
# @TODO - REQUIRED | ||
GITGATEWAY_GITHUB_ACCESS_TOKEN= | ||
|
||
GITGATEWAY_GITHUB_ACCESS_TOKEN="personal-access-token" | ||
GITGATEWAY_GITHUB_REPO="owner/name" | ||
# @TODO - REQUIRED | ||
GITGATEWAY_GITHUB_REPO= | ||
|
||
GITGATEWAY_ROLES="admin,cms" # leave blank to allow all roles | ||
# Original example.env wrote: leave blank to allow all roles. But, it won't | ||
# work unless it is commented out | ||
# GITGATEWAY_ROLES= |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The original docker has golang 1.8. Some dep fails to build with it.