-
Notifications
You must be signed in to change notification settings - Fork 255
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
Let users select provider OS #90
Conversation
@@ -12,8 +12,14 @@ print_help() | |||
echo "-h, --help show brief help" | |||
echo "-f, --force-overwrite if file to be generated already exists, force script to overwrite it" | |||
echo "-c, --clouds [File] specifies an existing clouds.yaml file to use rather than generating one interactively" | |||
echo "--provider-os [os name] select the operating system of your provider environment" | |||
echo " Supported Operating Systems: ubuntu, centos" |
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.
This script ended with error without --provider-os option. Please add "Mandatory"
} | ||
|
||
# Supported Operating Systems | ||
declare -a arr=("centos" "ubuntu") | ||
|
||
SCRIPT=$(basename $0) | ||
while test $# -gt 0; do |
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.
--provider-os is mandatory. Please take care of it.
…erate-yaml script Referencing: kubernetes-sigs#88 :)
@hidekazuna the issue has been resolved. Thanks for the review! |
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.
@iamemilio Thanks for updating. It works fine.
/assign @dims It was the robots idea: "We suggest the following additional approver: dims" |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dims, iamemilio The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
/retest |
* Fix README.md Required option --provider-os was added to generate-yaml.sh in #90. This patch fixes Cluster Creation section in README.md. * Apply suggestions from code review Co-Authored-By: hidekazuna <hidekazuna@gmail.com>
* Fix README.md Required option --provider-os was added to generate-yaml.sh in kubernetes-sigs#90. This patch fixes Cluster Creation section in README.md. * Apply suggestions from code review Co-Authored-By: hidekazuna <hidekazuna@gmail.com>
* Fix README.md Required option --provider-os was added to generate-yaml.sh in #90. This patch fixes Cluster Creation section in README.md. * Apply suggestions from code review Co-Authored-By: hidekazuna <hidekazuna@gmail.com>
* Fix README.md Required option --provider-os was added to generate-yaml.sh in kubernetes-sigs#90. This patch fixes Cluster Creation section in README.md. * Apply suggestions from code review Co-Authored-By: hidekazuna <hidekazuna@gmail.com>
Bug 1810400: Port CAPO to MAO API
Enables users to select which provider os they want to use in the generate-yaml.sh script
Referencing: #88
Special Notes:
:)