Service catalog:

kyma上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

kyma上service 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的原创文章,请关注公众号"汪子熙":
kyma上service catalog的安装部署方法

相关文章:

  • 2021-12-08
  • 2022-12-23
  • 2021-06-28
  • 2021-11-27
  • 2021-06-26
  • 2021-08-13
  • 2021-06-11
  • 2021-07-22
猜你喜欢
  • 2022-12-23
  • 2021-07-30
  • 2021-09-14
  • 2021-11-25
  • 2021-08-19
  • 2021-05-22
  • 2021-08-19
相关资源
相似解决方案