我已经通过kompose将我的docker-compose文件转换为kubernetes。有许多服务,部署,persistentvolumeclaim文件。我可以一次运行独立服务,但我想在一个UI中注册所有服务。
直到现在我已经完成了以下几个步骤:
-create persistentvolume.yaml file
-kubectl create -f consul-claim0-persistentvolume.yaml
kubectl create -f consul-claim1-persistentvolume.yaml
-kubectl create -f consul-claim0-persistentvolumeclaim.yaml
-kubectl create -f consul-claim0-persistentvolumeclaim.yamlkube
-kubectl create -f consul-deployment.yaml
-kubectl公开部署consul --name = consul-svc --target-port = 8500 --type = NodePort
然后我尝试在http://host:31827/ui/#/dc1/services/上运行其他服务。
请提出一些步骤。