-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 istioctl install command for OpenShift #16049
Conversation
Fixes: istio#16047 Signed-off-by: Sridhar Gaddam <[email protected]>
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 isn't correct, profile
and platform
are not the same.
You can for instance have something like --profile=ambient --platform=openshift
@sridhargaddam can you correct?
|
@@ -16,7 +16,7 @@ Follow these instructions to prepare an OpenShift cluster for Istio. | |||
Install Istio using the OpenShift profile: | |||
|
|||
{{< text bash >}} | |||
$ istioctl install --set global.platform=openshift | |||
$ istioctl install --set profile=openshift |
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 should be istioctl install --set values.global.platform=openshift
- using the Helm values.
istioctl-only profiles via --set profile
are/should be deprecated, and openshift
is now a platform
, and not a profile
.
This is so we can compose like so: istioctl install --set values.global.platform=openshift --set values.global.profile=ambient
and also share platforms and profiles between helm and istioctl without duplicating.
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.
Okay Ben. We can continue with your PR - https://github.com/istio/istio.io/pull/16051/files
NVM, fixed in #16051 |
Fixes: #16047