Skip to content

Commit 39f8506

Browse files
committed
Update Makefile and readme to use new name for devfile/kubernetes-api
Update references to devfile/kubernetes-api to devfile/api to reflect rename Signed-off-by: Angel Misevski <[email protected]>
1 parent c330812 commit 39f8506

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ uninstall: _set_ctx _do_uninstall _reset_ctx
212212

213213
### update_devworkspace_api: update version of devworkspace crds in go.mod
214214
update_devworkspace_api:
215-
go mod edit --require github.com/devfile/kubernetes-api@$(DEVWORKSPACE_API_VERSION)
215+
go mod edit --require github.com/devfile/api@$(DEVWORKSPACE_API_VERSION)
216216
go mod download
217217
go mod tidy
218218

@@ -222,11 +222,11 @@ update_devworkspace_crds:
222222
cd devworkspace-crds
223223
if [ ! -d ./.git ]; then
224224
git init
225-
git remote add origin -f https://github.com/devfile/kubernetes-api.git
225+
git remote add origin -f https://github.com/devfile/api.git
226226
git config core.sparsecheckout true
227227
echo "deploy/crds/*" > .git/info/sparse-checkout
228228
else
229-
git remote set-url origin https://github.com/devfile/kubernetes-api.git
229+
git remote set-url origin https://github.com/devfile/api.git
230230
fi
231231
git fetch --tags -p origin
232232
if git show-ref --verify refs/tags/$(DEVWORKSPACE_API_VERSION) --quiet; then
@@ -301,4 +301,4 @@ help: Makefile
301301
@echo ' WEBHOOK_ENABLED - Whether webhooks should be enabled in the deployment'
302302
@echo ' ADMIN_CTX - Kubectx entry that should be used during work with cluster. The current will be used if omitted'
303303
@echo ' REGISTRY_ENABLED - Whether the plugin registry should be deployed'
304-
@echo ' DEVWORKSPACE_API_VERSION - Branch or tag of the github.com/devfile/kubernetes-api to depend on. Defaults to master'
304+
@echo ' DEVWORKSPACE_API_VERSION - Branch or tag of the github.com/devfile/api to depend on. Defaults to master'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dev Workspace Operator
22

3-
Dev Workspace operator repository that contains the controller for the DevWorkspace Custom Resource. The Kubernetes API of the DevWorkspace is defined in the https://github.com/devfile/kubernetes-api repository.
3+
Dev Workspace operator repository that contains the controller for the DevWorkspace Custom Resource. The Kubernetes API of the DevWorkspace is defined in the https://github.com/devfile/api repository.
44

55
## Running the controller in a cluster
66

0 commit comments

Comments
 (0)