Skip to content
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

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ metadata:
namespace: flyte

---
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flyteadmin-binding
Expand Down
2 changes: 1 addition & 1 deletion kustomize/base/propeller/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ metadata:
---
# Create a binding from Role -> ServiceAccount
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: flytepropeller
namespace: flyte
Expand Down
11 changes: 9 additions & 2 deletions kustomize/base/wf_crd/wf_crd.yaml
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>
Expand All @@ -7,7 +7,14 @@ 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
schema:
openAPIV3Schema:
description: 'FlyteWorkflow: represents one Execution Workflow object'
type: object
served: true
storage: true
# either Namespaced or Cluster
names:
# plural name to be used in the URL: /apis/<group>/<version>/<plural>
Expand Down