-
Notifications
You must be signed in to change notification settings - Fork 26
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
Create Playbook for developing and testing sample helm based operator using operator-sdk #88
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: SurajGudaji The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
…ator using operator-sdk Signed-off-by: SurajGudaji <[email protected]>
- name: Validate Operator development and installation | ||
include_role: | ||
name: ocp-operator-api | ||
|
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.
please remove the space char.
|
||
- Login to a quay.io account | ||
``` | ||
docker login -u='' -p='' quay.io |
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.
docker login -u='' -p='' quay.io | |
docker login -u='<quay_username>' -p='<quay_password>' quay.io |
|--------------------------------------------|----------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------| | ||
| op_api_role_enable | no | false | Set it to true to run this playbook | | ||
| op_cleanup | no | false | Set it to true to do operator cleanup. | | ||
| build_operator_image | no | true | Set it to true to build the operator image | |
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.
Since the default is true.
| build_operator_image | no | true | Set it to true to build the operator image | | |
| build_operator_image | no | true | Set it to false to not build the operator image | |
ocp_version: "418" | ||
quay_username: "" |
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.
- These are marked as required, so don't set in defaults.
- Setting empty
quay_username
does not make sense, won't work.
No description provided.