Skip to content

Update PAPI component, should cause a new build #18963

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

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 1 addition & 6 deletions components/public-api-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ from development environments and will enable richer integrations with Integrate
The public API will initially be offered as a gRPC service. Clients for various languages will be available. At the moment, the API is in early stages and clients are not available.


## Roadmap
The roadmap and progress towards a stable release of the API is tracked in [Epic: Public Gitpod API](https://github.com/gitpod-io/gitpod/issues/7900).


## Architecture
* The API will be exposed on `api.gitpod.io` or `api.<domain>` for self-hosted or managed installations.
* The API will be exposed on `api.gitpod.io` or `api.<domain>` for Dedicated installations.
* The API is structured into services with definitions available in [components/public-api/gitpod/](../public-api/gitpod) as protobuf definitions.

2 changes: 1 addition & 1 deletion components/public-api-server/pkg/oidc/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ func TestGetClientConfigFromStartRequest(t *testing.T) {
func TestGetClientConfigFromStartRequestSingleOrg(t *testing.T) {
issuer := newFakeIdP(t)
service, dbConn := setupOIDCServiceForTests(t)
// make sure no other teams are in the db anymore
// make sure no other organizations are in the db anymore
dbConn.Delete(&db.Organization{}, "1=1")
config, team := createConfig(t, dbConn, &ClientConfig{
Issuer: issuer,
Expand Down