Skip to content

Commit 5386430

Browse files
Tobianasihrasko
authored andcommitted
Bump docs and scripts to 21.3.0
JIRA: LIGHTY-368 Signed-off-by: tobias.pobocik <[email protected]>
1 parent eb99281 commit 5386430

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

.github/workflows/lighty-rcgnmi-app/tests-lighty-rcgnmi-app.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ls -1 yangs
4444
#Run simulator for testing purpose
4545
printLine
4646
echo -e "-- Starting gNMI simulator device --\n"
47-
java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.3.0-SNAPSHOT.jar -c ./simulator/example_config.json > /dev/null 2>&1 &
47+
java -jar ${GITHUB_WORKSPACE}/lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.3.0.jar -c ./simulator/example_config.json > /dev/null 2>&1 &
4848

4949
#Add yangs into controller through REST rpc
5050
./add_yangs_via_rpc.sh

lighty-core/lighty-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use Lighty controller in your project:
1717
<dependency>
1818
<groupId>io.lighty.core</groupId>
1919
<artifactId>lighty-controller</artifactId>
20-
<version>21.3.0-SNAPSHOT</version>
20+
<version>21.3.0</version>
2121
</dependency>
2222
```
2323

lighty-examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ODL core services represent MD-SAL layer, controller, DataStore, global schema c
1515
<dependency>
1616
<groupId>io.lighty.core</groupId>
1717
<artifactId>lighty-bom</artifactId>
18-
<version>21.3.0-SNAPSHOT</version>
18+
<version>21.3.0</version>
1919
<type>pom</type>
2020
<scope>import</scope>
2121
</dependency>

lighty-examples/lighty-community-restconf-netconf-app/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ build the project: ```mvn clean install```
2121
### Start this demo example
2222
* build the project using ```mvn clean install```
2323
* go to target directory ```cd lighty-examples/lighty-community-restconf-netconf-app/target```
24-
* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.3.0-SNAPSHOT-bin.zip```
25-
* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.3.0-SNAPSHOT```
26-
* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.3.0-SNAPSHOT.jar```
24+
* unzip example application bundle ```unzip lighty-community-restconf-netconf-app-21.3.0-bin.zip```
25+
* go to unzipped application directory ```cd lighty-community-restconf-netconf-app-21.3.0```
26+
* start controller example controller application ```java -jar lighty-community-restconf-netconf-app-21.3.0.jar```
2727

2828
### Test example application
29-
Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.3.0-SNAPSHOT.jar```
29+
Once example application has been started using command ```java -jar lighty-community-restconf-netconf-app-21.3.0.jar```
3030
RESTCONF web interface is available at URL ```http://localhost:8888/restconf/*```
3131

3232
##### URLs to start with
@@ -42,7 +42,7 @@ URLs for OpenApi: https://datatracker.ietf.org/doc/html/rfc8040
4242

4343
### Use custom config files
4444
There are two separated config files: for NETCONF SBP single node and for cluster.
45-
`java -jar lighty-community-restconf-netconf-app-21.3.0-SNAPSHOT.jar /path/to/singleNodeConfig.json`
45+
`java -jar lighty-community-restconf-netconf-app-21.3.0.jar /path/to/singleNodeConfig.json`
4646

4747
Example configuration for single node is [here](src/main/assembly/resources/sampleConfigSingleNode.json)
4848

lighty-examples/lighty-controller-springboot-netconf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ mvn spring-boot:run
4646
or
4747

4848
```
49-
java -jar target/lighty-controller-springboot-21.3.0-SNAPSHOT.jar
49+
java -jar target/lighty-controller-springboot-21.3.0.jar
5050
```
5151

5252
or in any IDE, run main in

lighty-examples/lighty-gnmi-community-restconf-app/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@ cd lighty-examples/lighty-gnmi-community-restconf-app
4343
### Start RCgNMI controller app
4444
Unzip lighty-rcgnmi-app to current location
4545
```
46-
unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.3.0-SNAPSHOT-bin.zip
46+
unzip ../../lighty-applications/lighty-rcgnmi-app-aggregator/lighty-rcgnmi-app/target/lighty-rcgnmi-app-21.3.0-bin.zip
4747
```
4848
Start application with pre-prepared configuration [example_config.json](example_config.json).
4949
```
50-
java -jar lighty-rcgnmi-app-21.3.0-SNAPSHOT/lighty-rcgnmi-app-21.3.0-SNAPSHOT.jar -c example_config.json
50+
java -jar lighty-rcgnmi-app-21.3.0/lighty-rcgnmi-app-21.3.0.jar -c example_config.json
5151
```
5252

5353
### Start lighty.io gNMI device simulator
5454
Unzip gNMI simulator app to current folder.
5555
```
56-
unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.3.0-SNAPSHOT-bin.zip
56+
unzip ../../lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/target/lighty-gnmi-device-simulator-21.3.0-bin.zip
5757
```
5858

5959
Start the application with pre-prepared configuration [simulator_config.json](simulator/simulator_config.json)
6060
```
61-
java -jar lighty-gnmi-device-simulator-21.3.0-SNAPSHOT/lighty-gnmi-device-simulator-21.3.0-SNAPSHOT.jar -c simulator/simulator_config.json
61+
java -jar lighty-gnmi-device-simulator-21.3.0/lighty-gnmi-device-simulator-21.3.0.jar -c simulator/simulator_config.json
6262
```
6363

6464
### Add client certificates to lighty.io gNMI keystore

lighty-models/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ my-model/pom.xml
5656
<parent>
5757
<groupId>io.lighty.core</groupId>
5858
<artifactId>lighty-binding-parent</artifactId>
59-
<version>21.3.0-SNAPSHOT</version>
59+
<version>21.3.0</version>
6060
<relativePath/>
6161
</parent>
6262

lighty-modules/lighty-bgp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To use lighty BGP plugin in your project:
1111
<dependency>
1212
<groupId>io.lighty.modules</groupId>
1313
<artifactId>lighty-bgp</artifactId>
14-
<version>21.3.0-SNAPSHOT</version>
14+
<version>21.3.0</version>
1515
</dependency>
1616
```
1717
* Initialize and start BgpModule instance:

lighty-modules/lighty-gnmi/lighty-gnmi-device-simulator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This simulator provides gNMI device driven by gNMI proto files, with datastore d
88
<dependency>
99
<groupId>io.lighty.modules.gnmi</groupId>
1010
<artifactId>lighty-gnmi-device-simulator</artifactId>
11-
<version>21.3.0-SNAPSHOT</version>
11+
<version>21.3.0</version>
1212
</dependency>
1313
```
1414

lighty-modules/lighty-netconf-sb/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To use NETCONF in your project:
4242
<dependency>
4343
<groupId>io.lighty.modules</groupId>
4444
<artifactId>lighty-netconf-sb</artifactId>
45-
<version>21.3.0-SNAPSHOT</version>
45+
<version>21.3.0</version>
4646
</dependency>
4747
```
4848
2. Initialize and start an instance of NETCONF SBP in your code:

0 commit comments

Comments
 (0)