mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
593 B
37 lines
593 B
9 years ago
|
info:
|
||
|
title: VM with Disks
|
||
|
author: Kubernetes
|
||
|
description: Creates a single vm, then attaches disks to it.
|
||
|
|
||
|
required:
|
||
|
- zone
|
||
|
|
||
|
properties:
|
||
|
zone:
|
||
|
type: string
|
||
|
description: GCP zone
|
||
|
default: us-central1-a
|
||
|
disks:
|
||
|
type: array
|
||
|
items:
|
||
|
$ref: '#/disk'
|
||
|
|
||
|
disk:
|
||
|
type: object
|
||
|
required:
|
||
|
- name
|
||
|
properties:
|
||
|
name:
|
||
|
type: string
|
||
|
description: Suffix for this disk
|
||
|
sizeGb:
|
||
|
type: integer
|
||
|
default: 100
|
||
|
diskType:
|
||
|
type: string
|
||
|
enum:
|
||
|
- pd-standard
|
||
|
- pd-ssd
|
||
|
default: pd-standard
|
||
|
additionalProperties: false
|