Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
install operator by default gcp (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
samos123 authored Sep 6, 2023
1 parent 5efc144 commit 236293f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ build: manifests generate fmt vet ## Build manager binary.
.PHONY: dev-up-gcp
dev-up-gcp: PROJECT_ID ?=$(shell gcloud config get project)
dev-up-gcp:
export INSTALL_OPERATOR=no
cd install/gcp && up.sh
mkdir -p secrets
gcloud iam service-accounts keys create \
Expand Down
2 changes: 1 addition & 1 deletion install/gcp/up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -x
PROJECT_ID=${PROJECT_ID:=$(gcloud config get project)}
REGION=${REGION:-us-central1}
ZONE=${ZONE:=${REGION}-a}
INSTALL_OPERATOR=${INSTALL_OPERATOR:-no} # set to yes if you want to install operator
INSTALL_OPERATOR=${INSTALL_OPERATOR:-yes} # set to yes if you want to install operator

# Enable required services.
gcloud services enable container.googleapis.com
Expand Down

0 comments on commit 236293f

Please sign in to comment.