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的原创文章,请关注公众号"汪子熙":
标签:set,Service,service,kyma,namespace,helm,catalog,azure 来源: https://blog.csdn.net/i042416/article/details/100202247