-
Notifications
You must be signed in to change notification settings - Fork 263
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 channel create example with inbuilt alias for imcv1beta1 #1005
Fix channel create example with inbuilt alias for imcv1beta1 #1005
Conversation
use `imcv1beta1` alias reference in the example
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: navidshaikh 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 |
# Create a channel 'imc1' of type InMemoryChannel using inbuilt alias 'imcv1beta1' | ||
kn channel create imc1 --type imcv1beta1 | ||
# same as above without using inbuilt alias but providing explicit GVK |
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.
in line with whats mentioned on line no 22
/test pull-knative-client-integration-tests |
Thanks! :) |
…#1005) use `imcv1beta1` alias reference in the example
* Fix channel create example with inbuilt alias for imcv1beta1 (#1005) use `imcv1beta1` alias reference in the example * feat: Subscription CRUD (#1013) * feat: Add subscription CRUD - Add kn subscription command group and CRUDL sub-commands - create/update uses following flag names for better alignment: - --sink for subscriber - --sink-reply for reply - --sink-dead-letter for dead-letter-sink - Add 'subscriptions' and 'sub' aliases - Introduce shared library `knative.dev/client/lib/printing` to print Sink object in describe output * Set default channel type messaging.knative.dev/v1beta1:Channel i.e. if no prefix is given to `--channel`, consider it of `Channel` type * Update e2e tests * Update channel flag description * CHANGELOG for v0.17.1 * Conform with k8s.io/api v0.17.6
…#1005) use `imcv1beta1` alias reference in the example
use
imcv1beta1
alias reference in the example