Skip to content

Commit c999e05

Browse files
committed
--amend
Signed-off-by: Stephanie <[email protected]>
1 parent 666863a commit c999e05

16 files changed

+65
-67
lines changed

crds/workspace.devfile.io_devworkspaces.v1beta1.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5498,8 +5498,8 @@ spec:
54985498
type: string
54995499
uri:
55005500
description: Uri Reference of a Devfile yaml file, can
5501-
be an absolute http URL address or a relative Uri
5502-
with the current devfile as the base Uri
5501+
be a full URL or a relative Uri with the current devfile
5502+
as the base Uri
55035503
type: string
55045504
type: object
55055505
volume:
@@ -6883,8 +6883,8 @@ spec:
68836883
type: string
68846884
uri:
68856885
description: Uri Reference of a Devfile yaml file,
6886-
can be an absolute http URL address or a relative
6887-
Uri with the current devfile as the base Uri
6886+
can be a full URL or a relative Uri with the current
6887+
devfile as the base Uri
68886888
type: string
68896889
type: object
68906890
volume:
@@ -7148,8 +7148,8 @@ spec:
71487148
type: array
71497149
uri:
71507150
description: Uri Reference of a Devfile yaml file, can be
7151-
an absolute http URL address or a relative Uri with the
7152-
current devfile as the base Uri
7151+
a full URL or a relative Uri with the current devfile as
7152+
the base Uri
71537153
type: string
71547154
type: object
71557155
projects:

crds/workspace.devfile.io_devworkspaces.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5503,8 +5503,8 @@ spec:
55035503
type: string
55045504
uri:
55055505
description: Uri Reference of a Devfile yaml file, can
5506-
be an absolute http URL address or a relative Uri
5507-
with the current devfile as the base Uri
5506+
be a full URL or a relative Uri with the current devfile
5507+
as the base Uri
55085508
type: string
55095509
type: object
55105510
volume:
@@ -6888,8 +6888,8 @@ spec:
68886888
type: string
68896889
uri:
68906890
description: Uri Reference of a Devfile yaml file,
6891-
can be an absolute http URL address or a relative
6892-
Uri with the current devfile as the base Uri
6891+
can be a full URL or a relative Uri with the current
6892+
devfile as the base Uri
68936893
type: string
68946894
type: object
68956895
volume:
@@ -7153,8 +7153,8 @@ spec:
71537153
type: array
71547154
uri:
71557155
description: Uri Reference of a Devfile yaml file, can be
7156-
an absolute http URL address or a relative Uri with the
7157-
current devfile as the base Uri
7156+
a full URL or a relative Uri with the current devfile as
7157+
the base Uri
71587158
type: string
71597159
type: object
71607160
projects:

crds/workspace.devfile.io_devworkspacetemplates.v1beta1.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5221,8 +5221,8 @@ spec:
52215221
type: string
52225222
uri:
52235223
description: Uri Reference of a Devfile yaml file, can be
5224-
an absolute http URL address or a relative Uri with the
5225-
current devfile as the base Uri
5224+
a full URL or a relative Uri with the current devfile
5225+
as the base Uri
52265226
type: string
52275227
type: object
52285228
volume:
@@ -6555,8 +6555,8 @@ spec:
65556555
type: string
65566556
uri:
65576557
description: Uri Reference of a Devfile yaml file, can
6558-
be an absolute http URL address or a relative Uri
6559-
with the current devfile as the base Uri
6558+
be a full URL or a relative Uri with the current devfile
6559+
as the base Uri
65606560
type: string
65616561
type: object
65626562
volume:
@@ -6814,9 +6814,8 @@ spec:
68146814
type: object
68156815
type: array
68166816
uri:
6817-
description: Uri Reference of a Devfile yaml file, can be an absolute
6818-
http URL address or a relative Uri with the current devfile
6819-
as the base Uri
6817+
description: Uri Reference of a Devfile yaml file, can be a full
6818+
URL or a relative Uri with the current devfile as the base Uri
68206819
type: string
68216820
type: object
68226821
projects:

crds/workspace.devfile.io_devworkspacetemplates.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5226,8 +5226,8 @@ spec:
52265226
type: string
52275227
uri:
52285228
description: Uri Reference of a Devfile yaml file, can be
5229-
an absolute http URL address or a relative Uri with the
5230-
current devfile as the base Uri
5229+
a full URL or a relative Uri with the current devfile
5230+
as the base Uri
52315231
type: string
52325232
type: object
52335233
volume:
@@ -6560,8 +6560,8 @@ spec:
65606560
type: string
65616561
uri:
65626562
description: Uri Reference of a Devfile yaml file, can
6563-
be an absolute http URL address or a relative Uri
6564-
with the current devfile as the base Uri
6563+
be a full URL or a relative Uri with the current devfile
6564+
as the base Uri
65656565
type: string
65666566
type: object
65676567
volume:
@@ -6819,9 +6819,8 @@ spec:
68196819
type: object
68206820
type: array
68216821
uri:
6822-
description: Uri Reference of a Devfile yaml file, can be an absolute
6823-
http URL address or a relative Uri with the current devfile
6824-
as the base Uri
6822+
description: Uri Reference of a Devfile yaml file, can be a full
6823+
URL or a relative Uri with the current devfile as the base Uri
68256824
type: string
68266825
type: object
68276826
projects:

pkg/apis/workspaces/v1alpha2/importReference.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type ImportReferenceUnion struct {
2121
// +optional
2222
ImportReferenceType ImportReferenceType `json:"importReferenceType,omitempty"`
2323

24-
// Uri Reference of a Devfile yaml file, can be an absolute http URL address
24+
// Uri Reference of a Devfile yaml file, can be a full URL
2525
// or a relative Uri with the current devfile as the base Uri
2626
// +optional
2727
Uri string `json:"uri,omitempty"`

pkg/apis/workspaces/v1alpha2/zz_generated.parent_overrides.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

schemas/latest/dev-workspace-template-spec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@
12531253
"type": "string"
12541254
},
12551255
"uri": {
1256-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
1256+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
12571257
"type": "string"
12581258
}
12591259
},
@@ -2472,7 +2472,7 @@
24722472
"type": "string"
24732473
},
24742474
"uri": {
2475-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2475+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
24762476
"type": "string"
24772477
}
24782478
},
@@ -2760,7 +2760,7 @@
27602760
}
27612761
},
27622762
"uri": {
2763-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2763+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
27642764
"type": "string"
27652765
}
27662766
},

schemas/latest/dev-workspace-template.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@
14181418
"type": "string"
14191419
},
14201420
"uri": {
1421-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
1421+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
14221422
"type": "string"
14231423
}
14241424
},
@@ -2637,7 +2637,7 @@
26372637
"type": "string"
26382638
},
26392639
"uri": {
2640-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2640+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
26412641
"type": "string"
26422642
}
26432643
},
@@ -2925,7 +2925,7 @@
29252925
}
29262926
},
29272927
"uri": {
2928-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2928+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
29292929
"type": "string"
29302930
}
29312931
},

schemas/latest/dev-workspace.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1431,7 +1431,7 @@
14311431
"type": "string"
14321432
},
14331433
"uri": {
1434-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
1434+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
14351435
"type": "string"
14361436
}
14371437
},
@@ -2650,7 +2650,7 @@
26502650
"type": "string"
26512651
},
26522652
"uri": {
2653-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2653+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
26542654
"type": "string"
26552655
}
26562656
},
@@ -2938,7 +2938,7 @@
29382938
}
29392939
},
29402940
"uri": {
2941-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2941+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
29422942
"type": "string"
29432943
}
29442944
},

schemas/latest/devfile.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@
11781178
"type": "string"
11791179
},
11801180
"uri": {
1181-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
1181+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
11821182
"type": "string"
11831183
}
11841184
},
@@ -2453,7 +2453,7 @@
24532453
"type": "string"
24542454
},
24552455
"uri": {
2456-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2456+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
24572457
"type": "string"
24582458
}
24592459
},
@@ -2741,7 +2741,7 @@
27412741
}
27422742
},
27432743
"uri": {
2744-
"description": "Uri Reference of a Devfile yaml file, can be an absolute http URL address or a relative Uri with the current devfile as the base Uri",
2744+
"description": "Uri Reference of a Devfile yaml file, can be a full URL or a relative Uri with the current devfile as the base Uri",
27452745
"type": "string"
27462746
}
27472747
},

0 commit comments

Comments
 (0)