Skip to content

adjust rbac to match mcad #240

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

Closed
wants to merge 22 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5ae13d1
adjust rbac to match mcad
jbusche Aug 17, 2023
dcac680
revert go.mod and go.sum
jbusche Aug 17, 2023
67d902d
regenerate of role
jbusche Aug 17, 2023
1e3f7dc
more info on make manifests
jbusche Aug 17, 2023
c62b9b2
Apply MCAD CRD version replace for operator uninstall and undeploy
sutaakar Aug 15, 2023
3eeb618
Test support: return default status if Route is not initialized
sutaakar Aug 17, 2023
fd58cf7
Test support: return error if Ray API response code doesn't match
sutaakar Aug 22, 2023
50ccd1a
Test support: Return WriteRayJobLogs function
sutaakar Aug 23, 2023
be418f7
build(deps): bump github.com/onsi/gomega from 1.27.8 to 1.27.10
dependabot[bot] Aug 10, 2023
e9e4b85
Update dependency versions for release v0.2.0
anishasthana Aug 29, 2023
4d1e0b4
Automatically label issues as needing triage and add them to project …
anishasthana Aug 25, 2023
004d0e9
Fixing instascale version
Fiona-Waters Aug 30, 2023
ed54c77
Update dependency versions for release v0.2.2
anishasthana Aug 30, 2023
652510f
e2e tests: Reduce CPU requests for e2e test AppWrappers
sutaakar Aug 31, 2023
a0f7e7c
Change remaining is-latest references to stable
anishasthana Aug 30, 2023
e3c3114
Release workflow - replace any version value in Makefile
sutaakar Sep 1, 2023
02e7425
Remove custom-metrics-api
ChristianZaccaria Sep 4, 2023
a4eb235
Move AppWrapper API to workload.codeflare.dev group
astefanutti Aug 25, 2023
a204198
adjust rbac to match mcad
jbusche Aug 17, 2023
e5d10a7
revert go.mod and go.sum
jbusche Aug 17, 2023
578d891
Merge branch 'main' into jb-187-quotatree
jbusche Sep 5, 2023
de7ed65
config/rbac/role.yaml
jbusche Sep 5, 2023
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
Prev Previous commit
Next Next commit
Apply MCAD CRD version replace for operator uninstall and undeploy
  • Loading branch information
sutaakar authored and jbusche committed Sep 5, 2023
commit c62b9b2f94b81438333c6e391d25668121444dd4
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~

.PHONY: uninstall
uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
$(KUSTOMIZE) fn run config/crd/mcad --image gcr.io/kpt-fn/apply-setters:v0.2.0 -- MCAD_CRD=$(MCAD_CRD)
$(KUSTOMIZE) build config/crd | kubectl delete --ignore-not-found=$(ignore-not-found) -f -
git restore config/*

.PHONY: deploy
deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in ~/.kube/config.
Expand All @@ -266,7 +268,9 @@ deploy: manifests kustomize ## Deploy controller to the K8s cluster specified in

.PHONY: undeploy
undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
$(KUSTOMIZE) fn run config/crd/mcad --image gcr.io/kpt-fn/apply-setters:v0.2.0 -- MCAD_CRD=$(MCAD_CRD)
$(KUSTOMIZE) build config/default | kubectl delete --ignore-not-found=$(ignore-not-found) -f -
git restore config/*

##@ Build Dependencies

Expand Down