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
Introducing tests against minio #188
Conversation
3276670
to
1df9e3b
Compare
a379b5b
to
3e0edf0
Compare
plugin-template
Outdated
| @@ -44,10 +45,24 @@ DEFAULT_SETTINGS = { | |||
| 'pulpcore_pip_version_specifier': None, | |||
| 'pypi_username': None, | |||
| 'stable_branch': None, | |||
| 's3_settings': { | |||
| 'aws_access_key_id': '"AKIAIT2Z5TDYPX3ARJBA"', | |||
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.
Aren't we hardcoding this value in the test scripts? I'm thinking we should just hardcode all of these s3 settings as well as I doubt plugin writers will need to tweak them.
| {%- for setting, value in pulp_settings.items() -%} {{ setting }}: {{ value }} | ||
| {% endfor -%} | ||
| {% endif -%} | ||
| aws_access_key_id: "AKIAIT2Z5TDYPX3ARJBA" |
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.
I think these need to be wrapped in a {%- if test_s3 %} no?
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 is not needed as it is inside of if [ "$TEST" = 's3' ]; then
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.
Yup, I am blind.
Required PR: pulp/pulpcore#568 Required PR: pulp/pulp-operator#35 https://pulp.plan.io/issues/5962 closes #5962
https://pulp.plan.io/issues/5962
closes #5962