Skip to content

Commit

Permalink
fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
astoycos committed May 4, 2020
1 parent 9bd7678 commit dee4570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Persistent storage is implemented using [Ceph Object Storage](https://ceph.io/ce
| knative | destroy | None | None | None | Remove Knative deployment from openshift cluster |
| knative | service | None | `<Knative service to be deployed>` | --status=true/false--namespace | Deploy a knative service Set --status=true to check on Knative service deploymentDefault namespace is “knative-eventing” |
| knative | service | destroy | `<Knative service to be destroyed>` | --namespace | Remove a specified Knative service from the cluster at specified namespace Default namespace is “knative-eventing” |
| knative | source | None | `<containersource to be deployed>` | --namespace | Deploy a Knative Source at specified namespace Defaults to namespace “knative-eventing” |
| knative | source | None | `<containersource to be deployed>` `<sink for the source>` | --namespace | Deploy a Knative Source at specified namespace Defaults to namespace “knative-eventing” |
| knative | source | destroy | `<containersource to be destroyed>` | --namespace | Remove a specified knative source from the cluster from specified namespaceDefault namespace is “knative-eventing” |
| login | None | None | None | None | Login to your openshift cluster with the username and password |
| tensorflowServing | setup | None | None | --namespace | Deploy a tensorflow serving deployment and service Default namespace is “default” |
Expand Down
5 changes: 3 additions & 2 deletions cmd/ceph-setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func cephSetup() {
cmd.Flags().Set("output", "yaml")
cmd.Run(cmd, []string{command})
podStatus.CountPods(out.Bytes())
log.Print("waiting...")
log.Print("Waiting...")
out.Reset()
time.Sleep(5 * time.Second)
}
Expand All @@ -72,10 +72,11 @@ func cephSetup() {
cmd.Flags().Set("output", "yaml")
cmd.Run(cmd, []string{command})
podStatus.CountPods(out.Bytes())
log.Print("waiting...")
log.Print("Waiting...")
out.Reset()
time.Sleep(5 * time.Second)
}
time.Sleep(5 * time.Second)
} else {
cmd := apply.NewCmdApply("kubectl", co.CurrentFactory, IOStreams)
//Kubectl signals missing field, set validate to false to ignore this
Expand Down

0 comments on commit dee4570

Please sign in to comment.