-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
067d36a
commit 3620d41
Showing
5 changed files
with
69 additions
and
45 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
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
4 changes: 2 additions & 2 deletions
4
api/services/ocean/gke/schemas/manualHeadroomScheduledTaskCreate.yaml
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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ properties: | |
example: [email protected] | ||
description: > | ||
The account used by applications running on the VM to call GCP APIs. | ||
rootVolumeSize: | ||
rootVolumeSizeInGb: | ||
type: integer | ||
description: Set root volume size (in GB). | ||
example: 8 | ||
|
@@ -36,13 +36,13 @@ properties: | |
enum: [pd-standard, pd-ssd] | ||
metadata: | ||
type: array | ||
required: | ||
- key | ||
- value | ||
description: > | ||
Add metadata to the cluster. | ||
items: | ||
type: object | ||
required: | ||
- key | ||
- value | ||
properties: | ||
key: | ||
type: string | ||
|
@@ -83,6 +83,10 @@ properties: | |
description: Add taints to the virtual node group. | ||
items: | ||
type: object | ||
required: | ||
- key | ||
- value | ||
- effect | ||
properties: | ||
key: | ||
type: string | ||
|
@@ -92,6 +96,7 @@ properties: | |
description: Set taint value. | ||
effect: | ||
type: string | ||
enum: [ NoSchedule, PreferNoSchedule, NoExecute ] | ||
description: Set taint effect. | ||
example: | ||
- key: taintKey | ||
|
@@ -102,6 +107,9 @@ properties: | |
description: 'An array of labels to add to the virtual node group. Only custom user labels are allowed, and not Kubernetes built-in labels or Spot internal labels.' | ||
items: | ||
type: object | ||
required: | ||
- key | ||
- value | ||
properties: | ||
key: | ||
type: string | ||
|
@@ -136,6 +144,8 @@ properties: | |
Set custom headroom per virtual node group. Provide a list of launchSpec.autoScale.headroom objects. | ||
items: | ||
type: object | ||
required: | ||
- numOfUnits | ||
properties: | ||
cpuPerUnit: | ||
type: integer | ||
|
@@ -205,13 +215,12 @@ properties: | |
example: "2019-06-10T15:06:13.000Z" | ||
networkInterfaces: | ||
type: array | ||
required: | ||
- accessConfigs | ||
- network | ||
description: > | ||
Settings for network interfaces | ||
items: | ||
type: object | ||
required: | ||
- network | ||
properties: | ||
network: | ||
type: string | ||
|
@@ -228,10 +237,8 @@ properties: | |
type: array | ||
description: > | ||
The network protocol of the VNG. | ||
required: | ||
- name | ||
- type | ||
items: | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
|
@@ -246,12 +253,13 @@ properties: | |
example: "ONE_TO_ONE_NAT" | ||
aliasIpRanges: | ||
type: array | ||
required: | ||
- ipCidrRange | ||
- subnetworkRangeName | ||
description: | ||
use the imported node pool’s associated aliasIpRange to assign secondary IP addresses to the nodes. Cannot be changed after VNG creation. | ||
items: | ||
type: object | ||
required: | ||
- ipCidrRange | ||
- subnetworkRangeName | ||
properties: | ||
ipCidrRange: | ||
type: string | ||
|
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