-
Notifications
You must be signed in to change notification settings - Fork 2
Fix aws broker #16
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
Fix aws broker #16
Changes from all commits
a439da2
9bacbc1
15ed566
c72f0c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,19 +7,5 @@ applications: | |
GOPACKAGENAME: aws-rds | ||
CGO_CFLAGS: -Isrc/github.com/cloud-gov/databases/aws-rds/include | ||
LD_LIBRARY_PATH: "/home/vcap/app/include/oracle:$LD_LIBRARY_PATH" | ||
SERVICE_NAME: ((pg-service)) | ||
DB_TYPE: postgresql | ||
services: | ||
- rds-test-pg | ||
- name: aws-rds-smoke-test-suite-oracle | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We still have smoke tests for Oracle. Are we sure that we can remove this? https://github.com/cloud-gov/aws-broker/blob/main/ci/pipeline.yml#L413 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, that wasn't being used as it doesn't work. The DB_TYPE is overridden for each test. The Oracle tests are still happening with this change. |
||
buildpacks: | ||
- go_buildpack | ||
env: | ||
GOVERSION: go1.22 | ||
GOPACKAGENAME: aws-rds | ||
CGO_CFLAGS: -Isrc/github.com/cloud-gov/databases/aws-rds/include | ||
LD_LIBRARY_PATH: "/home/vcap/app/include/oracle:$LD_LIBRARY_PATH" | ||
SERVICE_NAME: ((oracle-service)) | ||
DB_TYPE: oracle | ||
services: | ||
- rds-test-oracle | ||
SERVICE_NAME: ((rds-service)) | ||
DB_TYPE: postgresql # valid types are postgresql, mysql and oracle |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do we know this is valid to remove?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It never was used. The services are created by each of the tests with a specific name to indicate which test created the service. I've been testing without it this whole time. I will test again once this is merged.