Skip to content

Commit 2015959

Browse files
committed
Rename contiv.raml -> netmaster.raml, renamed RAML dirs, update RAML to refer to renamed dirs, contivModel2raml.rb now takes output file as an arg
Signed-off-by: Bill Robinson <[email protected]>
1 parent 8cc3dc6 commit 2015959

14 files changed

+39
-158
lines changed

scripts/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ set -euo pipefail
66
bash generate.sh
77
go install ./ ./client/
88

9-
# regenerate netmaster.raml
9+
# regenerate libraries/netmaster.raml which holds the type netmaster type data
1010
docker run --rm \
1111
-u $(id -u):$(id -g) \
1212
-v $(pwd):/files \
1313
-w /files/spec \
14-
ruby:2.4.0-slim /usr/local/bin/ruby contivModel2raml.rb
15-
mv spec/netmaster.raml ./spec/contiv/libraries/netmaster.raml
14+
ruby:2.4.0-slim /usr/local/bin/ruby contivModel2raml.rb ./netmaster/libraries/netmaster.raml
1615

1716
# run the raml2html tool to generate docs under spec/docs
1817
pushd spec
@@ -28,6 +27,7 @@ if [[ "$(docker images -q $IMAGE_NAME:latest 2>/dev/null)" == "" ]]; then
2827
docker build -t $IMAGE_NAME -f spec/Dockerfile.cleanup .
2928
fi
3029

30+
echo "Cleaning up HTML output"
3131
docker run --rm \
3232
-u $(id -u):$(id -g) \
3333
-v $(pwd):/files \

spec/auth_proxy.raml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ protocols: [ HTTPS ]
1212
mediaType: [ application/json ]
1313

1414
resourceTypes:
15-
collection: !include contiv/schemas/collection.raml
16-
non-upd-collection-item: !include contiv/schemas/non-upd-collection-item.raml
17-
collection-item: !include contiv/schemas/collection-item.raml
18-
ro-collection-item: !include contiv/schemas/ro-collection-item.raml
15+
collection: !include auth_proxy/schemas/collection.raml
16+
non-upd-collection-item: !include auth_proxy/schemas/non-upd-collection-item.raml
17+
collection-item: !include auth_proxy/schemas/collection-item.raml
18+
ro-collection-item: !include auth_proxy/schemas/ro-collection-item.raml
1919

2020
annotationTypes:
2121
info:
@@ -27,11 +27,11 @@ annotationTypes:
2727
rediractable: boolean
2828

2929
securitySchemes:
30-
custom_scheme: !include contiv/schemas/custom-scheme.raml
30+
custom_scheme: !include auth_proxy/schemas/custom-scheme.raml
3131

3232
# Resource templates
3333
uses:
34-
auth_proxy: contiv/libraries/auth_proxy.raml
34+
auth_proxy: auth_proxy/libraries/auth_proxy.raml
3535

3636
securedBy: custom_scheme
3737

spec/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ echo "generating netmaster docs"
1212
docker run --rm \
1313
-u $(id -u):$(id -g) \
1414
-v $(pwd):/contiv \
15-
$IMAGE_NAME -i contiv.raml -o docs/contiv.html
15+
$IMAGE_NAME -i netmaster.raml -o docs/contiv.html
1616

1717
echo "generating auth_proxy docs"
1818
docker run --rm \

spec/contiv/libraries/auth_proxy.raml

-126
This file was deleted.

spec/contivModel2raml.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ def to_raml
99
end
1010
end
1111

12-
outfile = "netmaster.raml"
12+
raise "you must supply an output file, e.g., #{$PROGRAM_NAME} ./foo.raml" unless ARGV.size == 1
13+
14+
outfile = ARGV[0]
1315
output = Hash.new { |h, k| h[k] = {} }
1416

1517
Dir["../*.json"].each do |infile|

spec/docs/auth_proxy.html

+19-14
Large diffs are not rendered by default.

spec/docs/contiv.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
<div class="page-header">
212212
<h1>Contiv API documentation <small>version v1</small>
213213
</h1>
214-
<p>http://{serverfqdn}:10000/api/{version}</p>
214+
<p>https://{serverfqdn}:10000/api/{version}</p>
215215
<ul>
216216
<li>
217217
<strong>serverfqdn</strong>: <em>required (string)</em>

spec/contiv.raml spec/netmaster.raml

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ protocols: [ HTTPS ]
1212
mediaType: [ application/json ]
1313

1414
resourceTypes:
15-
collection: !include contiv/schemas/collection.raml
16-
non-upd-collection-item: !include contiv/schemas/non-upd-collection-item.raml
17-
collection-item: !include contiv/schemas/collection-item.raml
18-
ro-collection-item: !include contiv/schemas/ro-collection-item.raml
15+
collection: !include netmaster/schemas/collection.raml
16+
non-upd-collection-item: !include netmaster/schemas/non-upd-collection-item.raml
17+
collection-item: !include netmaster/schemas/collection-item.raml
18+
ro-collection-item: !include netmaster/schemas/ro-collection-item.raml
1919

2020
annotationTypes:
2121
info:
@@ -27,11 +27,11 @@ annotationTypes:
2727
rediractable: boolean
2828

2929
securitySchemes:
30-
custom_scheme: !include contiv/schemas/custom-scheme.raml
30+
custom_scheme: !include netmaster/schemas/custom-scheme.raml
3131

3232
# Resource templates
3333
uses:
34-
netmaster: contiv/libraries/netmaster.raml
34+
netmaster: netmaster/libraries/netmaster.raml
3535

3636
securedBy: custom_scheme
3737

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)