Skip to content

Commit fb661d2

Browse files
authored
Merge pull request #177 from HewlettPackard/AsisBagga-patch-1
Release 6.3 PR
2 parents 66345de + 263620e commit fb661d2

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.github/workflows/run_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
build_dir: docs/build/html/.
6262
env:
6363
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64-
64+
6565
- name: coveralls
6666
uses: AndreMiras/coveralls-python-action@develop
6767
with:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 6.3.0(unreleased)
1+
# 6.3.0
22
#### Notes
33
Extends support of the SDK to OneView REST API version 3200 (OneView v6.30)
44

README.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
OV Version | 6.30 | 6.20 | 6.10 | 6.00 | 5.60 |
66
| ------------- |:-------------:| :-------------:| :-------------:| :-------------:| :-------------:|
77
SDK Version/Tag |[v6.3.0](https://github.com/HewlettPackard/oneview-python/releases/tag/v6.3.0) |[v6.2.0](https://github.com/HewlettPackard/oneview-python/releases/tag/v6.2.0) | [v6.1.0](https://github.com/HewlettPackard/oneview-python/releases/tag/v6.1.0) | [v6.0.0](https://github.com/HewlettPackard/oneview-python/releases/tag/v6.0.0) | [v5.6.0](https://github.com/HewlettPackard/oneview-python/releases/tag/v5.6.0) |
8-
Build Status | [![Build status](https://action-badges.now.sh/JasonEtco/action-badges)](https://github.com/HewlettPackard/oneview-python/runs/3524286157) | [![Build status](https://action-badges.now.sh/JasonEtco/action-badges)](https://github.com/HewlettPackard/oneview-python/actions/runs/986745563)| [![Build status](https://action-badges.now.sh/JasonEtco/action-badges)](https://github.com/HewlettPackard/oneview-python/actions/runs/726148134)| [![Build status](https://action-badges.now.sh/JasonEtco/action-badges)](https://github.com/HewlettPackard/oneview-python/actions/runs/623585124)| [![Build status](https://action-badges.now.sh/JasonEtco/action-badges)](https://travis-ci.com/github/HewlettPackard/oneview-python/builds/214352373)|
8+
Build Status | [![Build status](https://github.com/HewlettPackard/oneview-python/actions/workflows/run_tests.yml/badge.svg)](https://github.com/HewlettPackard/oneview-python/runs/3524286157) | [![Build status](https://github.com/HewlettPackard/oneview-python/actions/workflows/run_tests.yml/badge.svg)](https://github.com/HewlettPackard/oneview-python/actions/runs/986745563)| [![Build status](https://github.com/HewlettPackard/oneview-python/actions/workflows/run_tests.yml/badge.svg)](https://github.com/HewlettPackard/oneview-python/actions/runs/726148134)| [![Build status](https://github.com/HewlettPackard/oneview-python/actions/workflows/run_tests.yml/badge.svg)](https://github.com/HewlettPackard/oneview-python/actions/runs/623585124)| [![Build status](https://github.com/HewlettPackard/oneview-python/actions/workflows/run_tests.yml/badge.svg)](https://travis-ci.com/github/HewlettPackard/oneview-python/builds/214352373)|
99

1010

1111
## Introduction
@@ -75,14 +75,11 @@ HPE OneView SDK for Python can be installed from Source,Pypi and Docker containe
7575
```
7676
Now you can run any of the example in this directory:
7777
Run the container, passing in your credentials to OneView and specifying which example recipe to run. <br />
78-
-v : The volume on which repo code is mounted <br />
79-
Replace "connection_templates" with the name of the example you'd like to run <br />
80-
Replace "pwd" with the path of the example file you'd like to run. <br />
78+
`-v`: The volume on which repo code is mounted <br />
79+
Replace `connection_templates` with the name of the example you'd like to run <br />
80+
Replace `pwd` with the path of the example file you'd like to run. <br />
8181
```bash
82-
$ docker run -it --rm \ -v $(pwd)/:/root/oneview/
83-
```
84-
```python
85-
$ python examples/connection_templates.py
82+
$ docker run -it --rm \ -v $(pwd)/:/root/oneview/ python examples/connection_templates.py
8683
```
8784

8885
## Running Examples with published docker image
@@ -112,7 +109,8 @@ HPE OneView SDK for Python can be installed from Source,Pypi and Docker containe
112109

113110
Once you have created the JSON file, you can initialize the OneViewClient:
114111

115-
oneview_client = OneViewClient.from_json_file('/path/config.json') <br />
112+
```oneview_client = OneViewClient.from_json_file('/path/config.json')``` <br />
113+
116114
:lock: Tip: Check the file permissions because the password is stored in clear-text.
117115

118116
### Environment Variables:
@@ -126,7 +124,7 @@ HPE OneView SDK for Python can be installed from Source,Pypi and Docker containe
126124
```
127125
Or sessionID
128126
```bash
129-
export ONEVIEWSDK_SESSIONID='123' <br />
127+
export ONEVIEWSDK_SESSIONID='123'
130128
```
131129

132130
Once you have defined the environment variables, you can initialize the OneViewClient using the following code snippet:

0 commit comments

Comments
 (0)