42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: gkeonprem v1 BareMetalControlPlaneConfig export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
required:
|
|
- controlPlaneNodePoolConfig
|
|
additionalProperties: false
|
|
properties:
|
|
COMMENT:
|
|
type: object
|
|
description: User specified info ignored by gcloud import.
|
|
additionalProperties: false
|
|
properties:
|
|
template-id:
|
|
type: string
|
|
region:
|
|
type: string
|
|
description:
|
|
type: string
|
|
date:
|
|
type: string
|
|
version:
|
|
type: string
|
|
UNKNOWN:
|
|
type: array
|
|
description: Unknown API fields that cannot be imported.
|
|
items:
|
|
type: string
|
|
apiServerArgs:
|
|
description: |-
|
|
Customizes the default API server args. Only a subset of customized flags
|
|
are supported. For the exact format, refer to the [API server
|
|
documentation](https://kubernetes.io/docs/reference/command-line- tools-
|
|
reference/kube-apiserver/).
|
|
type: array
|
|
items:
|
|
$ref: BareMetalApiServerArgument.yaml
|
|
controlPlaneNodePoolConfig:
|
|
description: Configures the node pool running the control plane.
|
|
$ref: BareMetalControlPlaneNodePoolConfig.yaml
|