mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(test): Remove symlink
Signed-off-by: Benoit Tigeot <benoit.tigeot@lifen.fr>
This commit is contained in:
parent
6a2d9a8695
commit
690730d3b9
5 changed files with 15 additions and 1 deletions
|
|
@ -1 +0,0 @@
|
|||
../../../action/testdata/charts/chart-with-schema-ref
|
||||
3
pkg/cmd/testdata/testcharts/chart-with-schema-ref/Chart.yaml
vendored
Normal file
3
pkg/cmd/testdata/testcharts/chart-with-schema-ref/Chart.yaml
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
apiVersion: v2
|
||||
name: chart-with-schema-ref
|
||||
version: 0.1.0
|
||||
4
pkg/cmd/testdata/testcharts/chart-with-schema-ref/name.schema.json
vendored
Normal file
4
pkg/cmd/testdata/testcharts/chart-with-schema-ref/name.schema.json
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "string"
|
||||
}
|
||||
7
pkg/cmd/testdata/testcharts/chart-with-schema-ref/values.schema.json
vendored
Normal file
7
pkg/cmd/testdata/testcharts/chart-with-schema-ref/values.schema.json
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": { "$ref": "name.schema.json" }
|
||||
}
|
||||
}
|
||||
1
pkg/cmd/testdata/testcharts/chart-with-schema-ref/values.yaml
vendored
Normal file
1
pkg/cmd/testdata/testcharts/chart-with-schema-ref/values.yaml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
name: "test"
|
||||
Loading…
Reference in a new issue