Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OV8.8 Validation #557

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.GITHUB_TOKEN }}
WITH_V: true
CUSTOM_TAG: "v8.7.0-13"
CUSTOM_TAG: "v8.8.0-13"
- 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/push_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,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-terraform:${{ env.RELEASE_VERSION }}-OV8.7
run: docker build . --file Dockerfile --tag hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV8.8
- name: Push the tagged Docker image
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV8.7
run: docker push hewlettpackardenterprise/hpe-oneview-sdk-for-terraform:${{ env.RELEASE_VERSION }}-OV8.8
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,50 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

# [v.8.8.0-13]

### Notes
- This release supports API6200 minimally where we can use OneView v8.80 with this SDK.

### OneView Features Supported

- Uplink Set
- Storage System
- Storage Volume Template
- Storage Volume Attachments
- Storage Volume
- Storage Pool
- Server Profile Template
- Server Profile
- Server Hardware Type
- Server Hardware
- Server Certificate
- Scope
- Rack Manager
- Network Set
- Logical Interconnect Groups
- Logical Interconnects
- Logical Enclosure
- Interconnect Types
- Interconnects
- Labels
- Id Pools IPv4 Subnets
- Id Pools Ipv4 Range
- Hypervisor Cluster Profile
- Hypervisor Manager
- Firmware Drivers
- FCOE Network
- FC Network
- Enclosure Group
- Enclosure
- Ethernet Network
- Connection Template
- Appliance Time and Locale Configuration
- Appliance SSH Access
- Appliance SNMPv3 Trap Destinations
- Appliance SNMPv1 Trap Destinations


# [v.8.7.0-13]

### Notes
Expand Down
20 changes: 10 additions & 10 deletions README.md

Large diffs are not rendered by default.

255 changes: 128 additions & 127 deletions endpoints-support.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/HewlettPackard/terraform-provider-oneview
go 1.15

require (
github.com/HewlettPackard/oneview-golang v8.7.0+incompatible
github.com/HewlettPackard/oneview-golang v8.8.0+incompatible
github.com/docker/machine v0.16.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-getter v1.6.2 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ github.com/HewlettPackard/oneview-golang v8.6.1-0.20231109094213-30a3fb89caf6+in
github.com/HewlettPackard/oneview-golang v8.6.1-0.20231109094213-30a3fb89caf6+incompatible/go.mod h1:GJcjWgNHrKtt2lUl4xcaV3NRiuBlG138DNrFygXj4JE=
github.com/HewlettPackard/oneview-golang v8.7.0+incompatible h1:qOVzKT1euEpjZDVPLUfaOS0GlrO4IlKMEF2uEeFMSbQ=
github.com/HewlettPackard/oneview-golang v8.7.0+incompatible/go.mod h1:GJcjWgNHrKtt2lUl4xcaV3NRiuBlG138DNrFygXj4JE=
github.com/HewlettPackard/oneview-golang v8.8.0+incompatible h1:GNRm4HtGMdDHB3dzYRz5JnjJODC0llpIlXX419qhhcE=
github.com/HewlettPackard/oneview-golang v8.8.0+incompatible/go.mod h1:GJcjWgNHrKtt2lUl4xcaV3NRiuBlG138DNrFygXj4JE=
github.com/agext/levenshtein v1.2.1/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
github.com/agext/levenshtein v1.2.2 h1:0S/Yg6LYmFJ5stwQeRp6EeOcCbj7xiqQSdNelsXvaqE=
github.com/agext/levenshtein v1.2.2/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558=
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cloud.google.com/go/internal/trace
cloud.google.com/go/internal/version
# cloud.google.com/go/storage v1.10.0
cloud.google.com/go/storage
# github.com/HewlettPackard/oneview-golang v8.7.0+incompatible
# github.com/HewlettPackard/oneview-golang v8.8.0+incompatible
## explicit
github.com/HewlettPackard/oneview-golang/liboneview
github.com/HewlettPackard/oneview-golang/ov
Expand Down
Loading