Documentation ¶
Overview ¶
Package testyaml contains test data and libraries for formatting Kubernetes configuration
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var FormattedJSON1 = []byte(`{"apiVersion": "example.com/v1beta1", "kind": "MyType", "spec": "a", "status": {"conditions": [
3, 1, 2]}}
`)
View Source
var FormattedYaml1 = []byte(`apiVersion: example.com/v1beta1
kind: MyType
spec: a
status:
conditions:
- 3
- 1
- 2
`)
View Source
var FormattedYaml2 = []byte(`apiVersion: example.com/v1beta1
kind: MyType2
spec2: a
status2:
conditions:
- 3
- 1
- 2
`)
View Source
var UnformattedJSON1 = []byte(`
{
"spec": "a",
"status": {"conditions": [3, 1, 2]},
"apiVersion": "example.com/v1beta1",
"kind": "MyType"
}
`)
View Source
var UnformattedYaml1 = []byte(`
spec: a
status:
conditions:
- 3
- 1
- 2
apiVersion: example.com/v1beta1
kind: MyType
`)
View Source
var UnformattedYaml2 = []byte(`
spec2: a
status2:
conditions:
- 3
- 1
- 2
apiVersion: example.com/v1beta1
kind: MyType2
`)
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.