kyma上service catalog的安装部署方法

Service catalog:

在cluster上安装Service catalog之前,首先使用下列命令确保该cluster可以使用helm:

kubectl create -f https://raw.githubusercontent.com/Azure/helm-charts/master/docs/prerequisities/helm-rbac-config.yaml
helm init --service-account tiller

再使用下列命令行部署:

Deploy Service Catalog on the cluster:

helm repo add svc-cat https://svc-catalog-charts.storage.googleapis.com
helm install svc-cat/catalog --name catalog --namespace catalog
–set apiserver.storage.etcd.persistence.enabled=true

使用下列命令确保所有和service catalog相关的pod都处于期望的running状态:

kubectl get pods --namespace catalog

使用下面的命令把azure Open Service Broker部署到kyma cluster上。

helm repo add azure https://kubernetescharts.blob.core.windows.net/azure
helm install azure/open-service-broker-azure --name osba --namespace osba
–set azure.subscriptionId=KaTeX parse error: Expected 'EOF', got '\ ' at position 23: …UBSCRIPTION_ID \̲ ̲ --set azure.t…AZURE_TENANT_ID
–set azure.clientId=KaTeX parse error: Expected 'EOF', got '\ ' at position 17: …ZURE_CLIENT_ID \̲ ̲ --set azure.c…AZURE_CLIENT_SECRET

使用下面的命令确保azure open Service broker处于正常运行状态:

kubectl get pods --namespace osba
要获取更多Jerry的原创文章,请关注公众号"汪子熙":

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐