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

[hybrid-quickstart] Support new Helm installation method #751

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 1 addition & 2 deletions tools/hybrid-quickstart/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
hybrid-files
tools
helm-charts
.env*
example-proxy/*.zip
3 changes: 3 additions & 0 deletions tools/hybrid-quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ initialized gcloud context:
#installed kubectl
kubectl version

#installed helm 3.10.0+ (b/288407289#comment18)
helm version

#installed tar
tar --version

Expand Down
13 changes: 8 additions & 5 deletions tools/hybrid-quickstart/initialize-runtime-gke.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,8 @@ create_gke_cluster
# install certmanager
install_certmanager

# download the Apigeectl utility
download_apigee_ctl

# configure the Apigee override parameters
prepare_resources
# download helm charts
download_helm_charts

# create certificate for env group hostname
create_cert "$ENV_GROUP_NAME"
Expand All @@ -66,6 +63,12 @@ create_sa
# configure the Apigee runtime
configure_runtime "$ENV_NAME" "$ENV_GROUP_NAME"

# install the Apigee hybrid CRDs
install_crds

# deploy job to verify cluster readiness
check_cluster_readiness

# install the Apigee runtime
install_runtime "$ENV_NAME" "$ENV_GROUP_NAME"

Expand Down
Loading
Loading