Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2587baf
fix: swagger
Mar 25, 2022
7478be6
chore: refactor middleware - pass all request headers to GetToken
Mar 22, 2022
9b0788e
feat: IAP Support for REST API
Mar 22, 2022
fc6e932
feat: support for multiple audiences
Mar 22, 2022
0456a1a
fix: log
Mar 25, 2022
acc98b3
chore: update alpine
Mar 25, 2022
e8b6b4d
chore: update json-iterator/go to v1.1.12
Mar 25, 2022
8f79975
chore: update redis to 8.11.5
Mar 25, 2022
11e3b9b
chore: update grpc to v1.45.0
Mar 25, 2022
ffb5e14
chore: update go-useragent to 6aa7c2ce8611
Mar 25, 2022
d393438
chore: update viper to v1.10.1
Mar 25, 2022
1f7936a
chore: update dd to 5.1.0
Mar 25, 2022
bb02d6b
chore: update dd-trace-go to v1.37
Mar 25, 2022
149e7db
chore: simplify (#360)
ArcHound Mar 30, 2022
8074dba
feat: github actions for testing (#362)
ArcHound Mar 30, 2022
069dbe4
chore: remove circleCI
Mar 30, 2022
fd0b03b
feat: dependabot for go (#364)
ArcHound Mar 30, 2022
1f8acd6
chore(deps): bump google.golang.org/api from 0.70.0 to 0.74.0 (#369)
dependabot[bot] Apr 5, 2022
4650962
chore(deps): bump github.com/lestrrat-go/jwx from 1.2.20 to 1.2.21 (#…
dependabot[bot] Apr 5, 2022
163d0b0
chore(deps): bump gopkg.in/DataDog/dd-trace-go.v1 from 1.37.0 to 1.37…
dependabot[bot] Apr 5, 2022
4e9eb9f
chore: readme and swagger update (#370)
ArcHound Apr 6, 2022
fbad0fe
feat: okta caching interval in config (#372)
ArcHound Apr 11, 2022
10d00e6
fix: audiences test fix (#373)
ArcHound Apr 12, 2022
8bdc6af
chore: remove groups endpoint (#374)
ArcHound Apr 12, 2022
4519fd5
chore: remove grpc (#375)
ArcHound Apr 13, 2022
b2a34ca
feat: force a sync of Okta cache and venom update (#383)
ArcHound May 4, 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
96 changes: 0 additions & 96 deletions .circleci/config.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .coafile

This file was deleted.

42 changes: 0 additions & 42 deletions .drone.yml

This file was deleted.

11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "gomod" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
48 changes: 48 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Makefile CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
container: golang:1.16.2

steps:
- uses: actions/checkout@v3
- name: build
run: make build

unit-test:
runs-on: ubuntu-latest
container: golang:1.16.2

steps:
- uses: actions/checkout@v3
- name: unit tests
run: make test/ci

e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: well known
run: mkdir .well-known
- name: test
run: make e2e
- name: stop env
run: make e2e/env-stop

e2e-test-nocache:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: well known
run: mkdir .well-known
- name: test
run: REDIS_HOST=nocache make e2e
- name: stop env
run: make e2e/env-stop
53 changes: 0 additions & 53 deletions .kodiak.toml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY . /app/
ARG CI_COMMIT_SHORT_SHA
RUN make build

FROM alpine:3.12.3
FROM alpine:3.15.2
RUN apk add --no-cache --virtual=.run-deps ca-certificates &&\
mkdir /app

Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ GOLANGCI_LINT := $(shell command -v golangci-lint 2> /dev/null)
install_deps:
go mod download
go install github.com/cespare/reflex@v0.3.0
go install github.com/golang/protobuf/protoc-gen-go@v1.4.3
go install github.com/go-swagger/go-swagger/cmd/swagger@v0.26.1

start:
Expand Down Expand Up @@ -64,9 +63,6 @@ else
@echo "SENTRY_RELEASE: ${CI_COMMIT_SHORT_SHA}" >> .env.yaml
endif

proto:
protoc --go_out=plugins=grpc:. ./api/grpc/v1/kiwi_iamapi.proto

swagger-validate:
swagger validate ./api/swagger.yml

Expand Down
Loading