-
Notifications
You must be signed in to change notification settings - Fork 117
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
doc: Remove cert flag from quickstart #364
Conversation
Good catch @rafvasq I added a TODO in the release v0.11.0 checklist to reinstate it immediately after the Beyond this PR, we need to figure out a better way to handle these cross-version changes, like adding a note with a link at the top of the Quickstart Guide (and other install docs) to go the last release version of the document. We had this problem several times before when we updated the Quickstart Guide for the |
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.
/lgtm
Signed-off-by: Rafael Vasquez <raf.vasquez@ibm.com>
New changes are detected. LGTM label has been removed. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ckadner, rafvasq 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 |
- Add tags when pre-pulling images for FVT (`latest`, `v...`) - Pre-pull minio-examples and minio-dev-examples images for FVT - this is one reason for the frequent timeouts in the FVT setup nodes - predictor tests using minio-dev-examples - storage tests for PVC using minio-examples (non -dev-) - Update links to `modelmesh` environment variables - Update install-script and quickstart to clone `main` branch, adding note pointing to the most recent stable release, and re-including the self-signed cert flag (#364) - Update required minimum Kubernetes version to `1.23` (HPA `autoscaling/v2`) - Update modelmesh component-versions to `v0.11.0` - Update release-process docs with additional places where versions need to be replaced --------- Signed-off-by: Christian Kadner <ckadner@us.ibm.com>
- Add tags when pre-pulling images for FVT (`latest`, `v...`) - Pre-pull minio-examples and minio-dev-examples images for FVT - this is one reason for the frequent timeouts in the FVT setup nodes - predictor tests using minio-dev-examples - storage tests for PVC using minio-examples (non -dev-) - Update links to `modelmesh` environment variables - Update install-script and quickstart to clone `main` branch, adding note pointing to the most recent stable release, and re-including the self-signed cert flag (#364) - Update required minimum Kubernetes version to `1.23` (HPA `autoscaling/v2`) - Update modelmesh component-versions to `v0.11.0` - Update release-process docs with additional places where versions need to be replaced --------- Signed-off-by: Christian Kadner <ckadner@us.ibm.com> (cherry picked from commit e147d28)
Motivation
The quickstart instructions explicitly install the latest release
v0.10
which does not include the recently added--enable-self-signed-ca
or require info regarding webhook certificates. Following the document as-is results in anUnknown option
error.Modifications
--enable-self-signed-ca
option from the quickstart guide and webhook information.Result
v0.10
Resolves #370