-
Notifications
You must be signed in to change notification settings - Fork 670
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
Kustomize update #1805
Kustomize update #1805
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,4 +1,4 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
apiVersion: apiextensions.k8s.io/v1beta1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
apiVersion: apiextensions.k8s.io/v1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
kind: CustomResourceDefinition | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
metadata: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# name must match the spec fields below, and be in the form: <plural>.<group> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -7,7 +7,23 @@ spec: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
# group name to use for REST API: /apis/<group>/<version> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
group: flyte.lyft.com | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# version name to use for REST API: /apis/<group>/<version> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
version: v1alpha1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
versions: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- name: v1alpha1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
served: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
storage: true | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
schema: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
openAPIV3Schema: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: object | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
properties: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
spec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: object | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
properties: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
cronSpec: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
image: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
replicas: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
type: integer | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# either Namespaced or Cluster | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This worked for me
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. thanks @EngHabu , i tested in my laptop, and it worked. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you for confirming. Can you please update the PR so I can approve and merge? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated the changes, thanks again |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
names: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# plural name to be used in the URL: /apis/<group>/<version>/<plural> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
I don't think we have these properties on the object... this can be left empty. right?
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.
We are not quite familiar with this part. However, if we don't include anything in the schema, it still broke. That's why we included an empty schema. If you think this can be left empty, please go ahead.
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 worked for me: