Fix invalid api version refs

Replaces invalid references to "v1" with "v1.0" in the swagger v2 doc.

Change-Id: Idc0072ac82014d283aff97bda9534bf5d4ff184f
This commit is contained in:
Sean Eagan 2018-05-31 11:18:33 -05:00
parent edc4b5537a
commit ddd40b77d8
1 changed files with 7 additions and 7 deletions

View File

@ -28,7 +28,7 @@ paths:
responses: responses:
'200': '200':
$ref: "#/responses/response-get-versions" $ref: "#/responses/response-get-versions"
/api/v1/health: /api/v1.0/health:
get: get:
description: Returns the health of the system. [TO BE IMPLEMENTED] description: Returns the health of the system. [TO BE IMPLEMENTED]
operationId: getHealth operationId: getHealth
@ -39,7 +39,7 @@ paths:
description: Indicates the system is healthy. This is currently the default return. description: Indicates the system is healthy. This is currently the default return.
'503': '503':
description: Indicates the system is not healthy. This is not yet implemented. description: Indicates the system is not healthy. This is not yet implemented.
/api/v1/releases: /api/v1.0/releases:
get: get:
description: Returns list of Tiller releases description: Returns list of Tiller releases
operationId: getReleases operationId: getReleases
@ -57,7 +57,7 @@ paths:
$ref: "#/responses/err-forbidden" $ref: "#/responses/err-forbidden"
'500': '500':
$ref: "#/responses/err-server-error" $ref: "#/responses/err-server-error"
/api/v1/status: /api/v1.0/status:
get: get:
description: Returns the status of Tiller description: Returns the status of Tiller
operationId: getStatus operationId: getStatus
@ -75,7 +75,7 @@ paths:
$ref: "#/responses/err-forbidden" $ref: "#/responses/err-forbidden"
'500': '500':
$ref: "#/responses/err-server-error" $ref: "#/responses/err-server-error"
/api/v1/apply: /api/v1.0/apply:
post: post:
description: Install or upgrade using an Armada manifest description: Install or upgrade using an Armada manifest
operationId: postApplyManifest operationId: postApplyManifest
@ -120,7 +120,7 @@ paths:
$ref: "#/responses/err-unsupported-media-type" $ref: "#/responses/err-unsupported-media-type"
'500': '500':
$ref: "#/responses/err-server-error" $ref: "#/responses/err-server-error"
/api/v1/tests: /api/v1.0/tests:
post: post:
description: Test manifest releases description: Test manifest releases
operationId: postTests operationId: postTests
@ -150,7 +150,7 @@ paths:
$ref: "#/responses/err-forbidden" $ref: "#/responses/err-forbidden"
'500': '500':
$ref: "#/responses/err-server-error" $ref: "#/responses/err-server-error"
/api/v1/test/{release_name}: /api/v1.0/test/{release_name}:
post: post:
description: Test specified release name description: Test specified release name
operationId: postReleaseName operationId: postReleaseName
@ -173,7 +173,7 @@ paths:
$ref: "#/responses/err-forbidden" $ref: "#/responses/err-forbidden"
'500': '500':
$ref: "#/responses/err-server-error" $ref: "#/responses/err-server-error"
/api/v1/validatedesign: /api/v1.0/validatedesign:
post: post:
description: Validate a design description: Validate a design
operationId: postValidateDesign operationId: postValidateDesign