...
1{
2 "components": {
3 "securitySchemes": {
4 "BearerToken": {
5 "description": "Bearer Token authentication",
6 "in": "header",
7 "name": "authorization",
8 "type": "apiKey"
9 }
10 }
11 },
12 "info": {
13 "title": "Kubernetes",
14 "version": "unversioned"
15 },
16 "openapi": "3.0.0",
17 "paths": {
18 "/.well-known/openid-configuration/": {
19 "get": {
20 "description": "get service account issuer OpenID configuration, also known as the 'OIDC discovery doc'",
21 "operationId": "getServiceAccountIssuerOpenIDConfiguration",
22 "responses": {
23 "200": {
24 "content": {
25 "application/json": {
26 "schema": {
27 "type": "string"
28 }
29 }
30 },
31 "description": "OK"
32 },
33 "401": {
34 "description": "Unauthorized"
35 }
36 },
37 "tags": [
38 "WellKnown"
39 ]
40 }
41 }
42 }
43}
View as plain text