@@ -22,7 +22,6 @@ IMG := $(IMAGE_REPO):$(IMAGE_TAG)
22
22
# Define dependency versions (use go.mod if we also use Go code from dependency)
23
23
export CERT_MGR_VERSION := v1.9.0
24
24
export CATALOGD_VERSION := $(shell go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/catalogd)
25
- export KAPP_VERSION := $(shell go list -mod=mod -m -f "{{.Version}}" github.com/vmware-tanzu/carvel-kapp-controller)
26
25
export RUKPAK_VERSION := $(shell go list -mod=mod -m -f "{{.Version}}" github.com/operator-framework/rukpak)
27
26
export WAIT_TIMEOUT := 60s
28
27
@@ -166,7 +165,7 @@ kind-load: $(KIND) #EXHELP Loads the currently constructed image onto the cluste
166
165
kind-deploy : export MANIFEST := ./operator-controller.yaml
167
166
kind-deploy : manifests $(KUSTOMIZE ) # EXHELP Install controller and dependencies onto the kind cluster.
168
167
$(KUSTOMIZE ) build $(KUSTOMIZE_BUILD_DIR ) > operator-controller.yaml
169
- envsubst ' $$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$KAPP_VERSION,$$ RUKPAK_VERSION,$$MANIFEST' < scripts/install.tpl.sh | bash -s
168
+ envsubst ' $$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$RUKPAK_VERSION,$$MANIFEST' < scripts/install.tpl.sh | bash -s
170
169
171
170
.PHONY : kind-cluster
172
171
kind-cluster : $(KIND ) # EXHELP Standup a kind cluster.
@@ -256,7 +255,7 @@ release: $(GORELEASER) #EXHELP Runs goreleaser for the operator-controller. By d
256
255
quickstart : export MANIFEST := https://github.com/operator-framework/operator-controller/releases/download/$(VERSION ) /operator-controller.yaml
257
256
quickstart : $(KUSTOMIZE ) manifests # EXHELP Generate the installation release manifests and scripts.
258
257
$(KUSTOMIZE ) build $(KUSTOMIZE_BUILD_DIR ) | sed " s/:devel/:$( VERSION) /g" > operator-controller.yaml
259
- envsubst ' $$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$KAPP_VERSION,$$ RUKPAK_VERSION,$$MANIFEST' < scripts/install.tpl.sh > install.sh
258
+ envsubst ' $$CATALOGD_VERSION,$$CERT_MGR_VERSION,$$RUKPAK_VERSION,$$MANIFEST' < scripts/install.tpl.sh > install.sh
260
259
261
260
# #@ Docs
262
261
0 commit comments