Skip to content

Commit

Permalink
Merge pull request #264 from HewlettPackard/PR
Browse files Browse the repository at this point in the history
OV 8.3 Validation [Automation]
  • Loading branch information
alisha-k-kalladassery authored May 2, 2023
2 parents 10e0990 + 11a9bef commit 372e5ea
Show file tree
Hide file tree
Showing 8 changed files with 573 additions and 442 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/createtagandrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.CD_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v8.2.0"
CUSTOM_TAG: "v8.3.0"
- name: Display
run: echo ${{ steps.tag_and_prepare_release.outputs.new_tag }}
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ jobs:
- name: Login to Docker Hub
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Build the tagged Docker image
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.2
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.3
- name: Push the tagged Docker image
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.2
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-python:${{ env.GITHUB_REF }}-OV8.3
143 changes: 137 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,70 @@
# 8.3.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 5200 (Oneview V8.3.0)

##### Features Supported With The Current Release
- Appliance Configuration Timeconfig
- Appliance Health Status
- Appliance Network Interfaces
- Appliance Node Information
- Appliance Proxy Configuration
- Appliance Snmpv1 Trap Destinations
- Appliance Snmpv3 Trap Destinations
- Appliance Snmpv3 Users
- Appliance Ssh Access
- Appliance Time And Locale Configuration
- Certificates Server
- Drive Enclosures
- Connection Templates
- Enclosure Groups
- Enclosures
- Ethernet Networks
- Fc Networks
- Fcoe Networks
- Firmware Bundles
- Firmware Drivers
- Ha Nodes
- Hypervisor Cluster Profiles
- Hypervisor Managers
- Id Pool Ipv4 Range
- Id Pool Ipv4 Subnets
- Id Pools
- Index Resources
- Interconnect Types
- Interconnects
- Labels
- Logical Enclosures
- Logical Interconnect Groups
- Logical Interconnects
- Network Sets
- Rack Managers
- Repositories
- Restores
- San Managers
- San Providers
- Sas Interconnects
- Sas Interconnect Types
- Sas Logical Interconnect Groups
- Sas Logical Interconnects
- Sas Logical Jbods
- Sas Logical Jbod Attachments
- Scopes
- Server Hardware
- Server Hardware Types
- Server Profile Templates
- Server Profiles
- Storage Pools
- Storage Systems
- Storage Templates
- Storage Volume
- Storage Volume Attachments
- Storage Volume Templates
- Tasks
- Uplink Sets
- Users
- Version
- Volumes

# 8.2.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 5000 (Oneview V8.2.0)
Expand Down Expand Up @@ -51,12 +118,12 @@ Extends Support Of The Sdk To Oneview Rest Api Version 5000 (Oneview V8.2.0)
- Restores
- San Managers
- San Providers
- SAS Interconnects
- SAS Interconnect Types
- SAS Logical Interconnect Groups
- SAS Logical Interconnects
- SAS Logical JBODs
- SAS Logical JBOD Attachments
- Sas Interconnects
- Sas Interconnect Types
- Sas Logical Interconnect Groups
- Sas Logical Interconnects
- Sas Logical Jbods
- Sas Logical Jbod Attachments
- Scopes
- Server Hardware
- Server Hardware Types
Expand Down Expand Up @@ -138,6 +205,70 @@ Extends Support Of The Sdk To Oneview Rest Api Version 4800 (Oneview V8.1.0)
- Version
- Volumes

# 8.1.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 4800 (Oneview V8.1.0)

#### Major Changes
- Added Support For San Manager Update Functionality
- Removed Support For Image Streamer Cleanup

##### Features Supported With The Current Release
- Appliance Configuration Timeconfig
- Appliance Health Status
- Appliance Network Interfaces
- Appliance Node Information
- Appliance Proxy Configuration
- Appliance Snmpv1 Trap Destinations
- Appliance Snmpv3 Trap Destinations
- Appliance Snmpv3 Users
- Appliance Ssh Access
- Appliance Time And Locale Configuration
- Certificates Server
- Connection Templates
- Enclosure Groups
- Enclosures
- Ethernet Networks
- Fc Networks
- Fcoe Networks
- Firmware Bundles
- Firmware Drivers
- Ha Nodes
- Hypervisor Cluster Profiles
- Hypervisor Managers
- Id Pool Ipv4 Range
- Id Pool Ipv4 Subnets
- Id Pools
- Index Resources
- Interconnect Types
- Interconnects
- Labels
- Logical Enclosures
- Logical Interconnect Groups
- Logical Interconnects
- Network Sets
- Rack Managers
- Repositories
- Restores
- San Managers
- San Providers
- Scopes
- Server Hardware
- Server Hardware Types
- Server Profile Templates
- Server Profiles
- Storage Pools
- Storage Systems
- Storage Templates
- Storage Volume
- Storage Volume Attachments
- Storage Volume Templates
- Tasks
- Uplink Sets
- Users
- Version
- Volumes

# 8.0.0
#### Notes
Extends Support Of The Sdk To Oneview Rest Api Version 4600 (Oneview V8.0.0)
Expand Down
14 changes: 7 additions & 7 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
# built documents.
#
# The short X.Y version.
version = u'8.2.0'
version = u'8.3.0'
# The full version, including alpha/beta/rc tags.
release = u'8.2.0'
release = u'8.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Loading

0 comments on commit 372e5ea

Please sign in to comment.