File tree Expand file tree Collapse file tree 8 files changed +189
-146
lines changed
Expand file tree Collapse file tree 8 files changed +189
-146
lines changed Original file line number Diff line number Diff line change 1717 env :
1818 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
1919 WITH_V : true
20- CUSTOM_TAG : " v9.2 .0-13"
20+ CUSTOM_TAG : " v9.3 .0-13"
2121 - name : Display
2222 run : echo ${{ steps.tag_and_prepare_release.outputs.new_tag }}
2323 - uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1919 - name : Login to Docker Hub
2020 run : echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
2121 - name : Build the tagged Docker image
22- run : docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV9.2
22+ run : docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV9.3
2323 - name : Push the tagged Docker image
24- run : docker push hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV9.2
24+ run : docker push hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV9.3
Original file line number Diff line number Diff line change 11All notable changes to this project will be documented in this file.
22This project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html )
33
4+ # [ v.9.3.0-13]
5+
6+ ### Notes
7+ - This release supports API7200 minimally where we can use OneView v9.30 with this SDK.
8+
9+ ### OneView Features Supported
10+
11+ - Uplink Set
12+ - Storage System
13+ - Storage Volume Template
14+ - Storage Volume Attachments
15+ - Storage Volume
16+ - Storage Pool
17+ - Server Profile Template
18+ - Server Profile
19+ - Server Hardware Type
20+ - Server Hardware
21+ - Server Certificate
22+ - Scope
23+ - Rack Manager
24+ - Network Set
25+ - Logical Interconnect Groups
26+ - Logical Interconnects
27+ - Logical Enclosure
28+ - Interconnect Types
29+ - Interconnects
30+ - Labels
31+ - Id Pools IPv4 Subnets
32+ - Id Pools Ipv4 Range
33+ - Hypervisor Cluster Profile
34+ - Hypervisor Manager
35+ - Firmware Drivers
36+ - FCOE Network
37+ - FC Network
38+ - Enclosure Group
39+ - Enclosure
40+ - Ethernet Network
41+ - Connection Template
42+ - Appliance Time and Locale Configuration
43+ - Appliance SSH Access
44+ - Appliance SNMPv3 Trap Destinations
45+ - Appliance SNMPv1 Trap Destinations
46+
447# [ v.9.2.0-13]
548
649### Notes
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/HewlettPackard/terraform-provider-oneview
33go 1.15
44
55require (
6- github.com/HewlettPackard/oneview-golang v9.2 .0+incompatible
6+ github.com/HewlettPackard/oneview-golang v9.3 .0+incompatible
77 github.com/docker/machine v0.16.2 // indirect
88 github.com/hashicorp/errwrap v1.1.0 // indirect
99 github.com/hashicorp/go-getter v1.6.2 // indirect
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9
3434dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9 /go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU =
3535github.com/BurntSushi/toml v0.3.1 /go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU =
3636github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802 /go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo =
37- github.com/HewlettPackard/oneview-golang v9.2 .0+incompatible h1:9vxiL/rpbuuCmd9664nHTv1+ltGGc4CI0Zy52iyqEOQ =
38- github.com/HewlettPackard/oneview-golang v9.2 .0+incompatible /go.mod h1:GJcjWgNHrKtt2lUl4xcaV3NRiuBlG138DNrFygXj4JE =
37+ github.com/HewlettPackard/oneview-golang v9.3 .0+incompatible h1:8atD/jd05hIMprQwjjp2FhE3P96VgXIKhAdPRiAScr4 =
38+ github.com/HewlettPackard/oneview-golang v9.3 .0+incompatible /go.mod h1:GJcjWgNHrKtt2lUl4xcaV3NRiuBlG138DNrFygXj4JE =
3939github.com/agext/levenshtein v1.2.1 /go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558 =
4040github.com/agext/levenshtein v1.2.2 h1:0S/Yg6LYmFJ5stwQeRp6EeOcCbj7xiqQSdNelsXvaqE =
4141github.com/agext/levenshtein v1.2.2 /go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558 =
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ cloud.google.com/go/internal/trace
88cloud.google.com/go/internal/version
99# cloud.google.com/go/storage v1.10.0
1010cloud.google.com/go/storage
11- # github.com/HewlettPackard/oneview-golang v9.2 .0+incompatible
11+ # github.com/HewlettPackard/oneview-golang v9.3 .0+incompatible
1212## explicit
1313github.com/HewlettPackard/oneview-golang/liboneview
1414github.com/HewlettPackard/oneview-golang/ov
You can’t perform that action at this time.
0 commit comments