Skip to content

Commit 53a0e99

Browse files
committed
chore(workflow): use drycc service-catalog
1 parent f49e102 commit 53a0e99

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

_scripts/install.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ function install_k3s_agent {
113113
curl -sfL "${k3s_install_url}" |INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC" sh -s -
114114
}
115115

116-
117116
function install_components {
118117
helm repo update
119118

@@ -130,7 +129,12 @@ configInline:
130129
EOF
131130
helm install ingress-nginx drycc/ingress-nginx --namespace kube-system --wait
132131
helm install cert-manager drycc/cert-manager --namespace cert-manager --create-namespace --set installCRDs=true --wait
133-
helm install catalog drycc/catalog --set asyncBindingOperationsEnabled=true --namespace catalog --create-namespace --wait
132+
# Use arm64 and amd64 arch of docker.io/drycc/service-catalog:canary, it will be deleted in the future.
133+
helm install catalog drycc/catalog \
134+
--set asyncBindingOperationsEnabled=true \
135+
--set image=docker.io/drycc/service-catalog:canary \
136+
--namespace catalog \
137+
--create-namespace --wait
134138
}
135139

136140
function install_longhorn {
@@ -333,8 +337,8 @@ if [[ -z "$@" ]] ; then
333337
install_helm
334338
install_components
335339
install_longhorn
336-
configure_haproxy
337340
install_drycc
341+
configure_haproxy
338342
install_helmbroker
339343
echo -e "\\033[32m---> Installation complete, enjoy life...\\033[0m"
340344
else

0 commit comments

Comments
 (0)