-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use git sparse-checkout for kubernetes files (#93)
move input-spec/*.json files out of src/ directory
- Loading branch information
1 parent
a8de795
commit b552816
Showing
93 changed files
with
186,097 additions
and
62,161 deletions.
There are no files selected for viewing
This file contains 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
43 changes: 43 additions & 0 deletions
43
packages/cli/input-spec/.well-known__openid-configuration_openapi.json
This file contains 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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"components": { | ||
"securitySchemes": { | ||
"BearerToken": { | ||
"description": "Bearer Token authentication", | ||
"in": "header", | ||
"name": "authorization", | ||
"type": "apiKey" | ||
} | ||
} | ||
}, | ||
"info": { | ||
"title": "Kubernetes", | ||
"version": "unversioned" | ||
}, | ||
"openapi": "3.0.0", | ||
"paths": { | ||
"/.well-known/openid-configuration/": { | ||
"get": { | ||
"description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'", | ||
"operationId": "getServiceAccountIssuerOpenIDConfiguration", | ||
"responses": { | ||
"200": { | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"description": "OK" | ||
}, | ||
"401": { | ||
"description": "Unauthorized" | ||
} | ||
}, | ||
"tags": [ | ||
"WellKnown" | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.