diff --git a/helmcharts/stable/README.md b/helmcharts/stable/README.md index 670e61dc3c..8bce337fab 100644 --- a/helmcharts/stable/README.md +++ b/helmcharts/stable/README.md @@ -25,26 +25,21 @@ $ kubectl create namespace eclipse-che Install `Eclipse Che Operator` by following instructions in top right button `Install`. -A new pod che-operator is created in `eclipse-che` namespace +A new pod `che-operator` is created in `eclipse-che` namespace: ```bash $ kubectl get pods -n eclipse-che eclipse-che che-operator-554c564476-fl98z 1/1 Running 0 13s ``` -Click `CRDS` button, select `CheCluster` template and copy -custom resource Eclipse Che to file org.eclipse.che_v1_checluster.yaml. -Set up valid actual ingress domain `k8s.domain`. -Apply CR: +Click `CRDS` button, select `CheCluster` template and save Eclipse Che custom resource as a file `org.eclipse.che_v1_checluster.yaml` with a valid ingress domain for a Kubernetes cluster. Apply Eclipse Che custom resource to trigger an installation: ```bash $ kubectl apply -f org.eclipse.che_v1_checluster.yaml -n eclipse-che ``` Also you can use `kubectl edit checluster/eclipse-che -n eclipse-che` to update Eclipse Che configuration. -See more configuration options in the [Installation guide](https://www.eclipse.org/che/docs/che-7/installation-guide/configuring-the-che-installation/). - -The deployment process can be tracked by looking at the Operator logs by using the command: +See more configuration options in the [Installation guide](https://www.eclipse.org/che/docs/che-7/installation-guide/configuring-the-che-installation/). The deployment process can be tracked by looking at the Operator logs by using the command: ```bash $ kubectl logs che-operator-554c564476-fl98z -n eclipse-che -f diff --git a/pkg/deploy/server/server.go b/pkg/deploy/server/server.go index 49f83492be..604f59462e 100644 --- a/pkg/deploy/server/server.go +++ b/pkg/deploy/server/server.go @@ -263,7 +263,7 @@ func (s *Server) UpdateAvailabilityStatus() (bool, error) { name = "CodeReady Workspaces" } - logrus.Infof(name+" is now available at: %s", s.deployContext.CheCluster.Status.CheURL) + logrus.Infof(name+" is now available at: %s", util.GetCheURL(s.deployContext.CheCluster)) s.deployContext.CheCluster.Status.CheClusterRunning = AvailableStatus err := deploy.UpdateCheCRStatus(s.deployContext, "status: Che API", AvailableStatus) return err == nil, err