Skip to content

Commit

Permalink
Merge branch '6.0-dev' into 6.2-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesdickson6 committed Nov 7, 2023
2 parents 12a7f5b + 37949a1 commit 04d98e7
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
3 changes: 2 additions & 1 deletion components/examples/clusterRequest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"podCidr": "172.20.0.0/16",
"serviceCidr": "172.30.0.0/16",
"nodeCount": 3,
"createUser": true
"createUser": true,
"defaultRepoAccount": 22
},
"name": "testpool",
"plan": {
Expand Down
2 changes: 2 additions & 0 deletions components/examples/integrationDockerRepo.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"username": "bertramqa",
"password": "************",
"passwordHash": "64515b216ad31366c5bd9681922cdc13145a",
"token": "************",
"tokenHash": "e5b4afb1c682f4d6feeec3f50fa3cff26b638087549c17a671747d98db7e6dad",
"isPlugin": false,
"config": {},
"status": null,
Expand Down
2 changes: 2 additions & 0 deletions components/examples/integrationDockerRepoSuccess.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"username": "bertramqa",
"password": "************",
"passwordHash": "64515b216ad31366c5bd9681922cdc13145a",
"token": "************",
"tokenHash": "e5b4afb1c682f4d6feeec3f50fa3cff26b638087549c17a671747d98db7e6dad",
"isPlugin": false,
"config": {},
"status": null,
Expand Down
5 changes: 5 additions & 0 deletions components/schemas/clusterServerCreate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ properties:
Key for specific host type configuration
The config parameter is for configuration options that are specific to each Provision Type. The Provision Types api can be used to see which options are available.
properties:
defaultRepoAccount:
type: integer
description: Default Git Account to be used when pulling images. Default behavior is to be anonymous, which does have limits on allowed image pulls from public Docker Repos.
nullable: true
serverType:
type: object
description: Server type to create. See `/api/server-types` for available server types for the cloud.
Expand Down
4 changes: 4 additions & 0 deletions components/schemas/integrationDockerRepo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ properties:
type: string
passwordHash:
type: string
token:
type: string
tokenHash:
type: string
isPlugin:
type: boolean
config:
Expand Down
8 changes: 4 additions & 4 deletions components/schemas/integrationDockerRepoConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ properties:
required:
- name
- type
- serviceUrl
- serviceUsername
- servicePassword
properties:
name:
type: string
Expand All @@ -28,4 +25,7 @@ properties:
description: Username
servicePassword:
type: string
description: Password
description: Password
serviceToken:
type: string
description: Access Token
6 changes: 4 additions & 2 deletions components/schemas/networkPoolIp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,12 @@ refType:
type: string
nullable: true
refId:
type: string
type: integer
format: int64
nullable: true
subRefId:
type: string
type: integer
format: int64
nullable: true
networkDomain:
type: string
Expand Down
11 changes: 10 additions & 1 deletion components/schemas/networkPoolIpCreate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@ properties:
description: IP Address
hostname:
type: string
description: Hostname
description: Hostname
refType:
type: string
description: Type of associated resource such as a host/server
example: ComputeServer
refId:
type: integer
format: int64
description: ID of associated resource such as a host/server
example: 42

0 comments on commit 04d98e7

Please sign in to comment.