Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue-583: Holistic review of non-quarkus getting-started chapter #651

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion serverlessworkflow/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ asciidoc:
kogito_devservices_imagename: quay.io/kiegroup/kogito-data-index-ephemeral-nightly
sonataflow_devmode_imagename: quay.io/kiegroup/kogito-swf-devmode-nightly
sonataflow_builder_imagename: quay.io/kiegroup/kogito-swf-builder-nightly
sonataflow_devmode_devui_url: /q/dev/org.kie.kogito.kogito-quarkus-serverless-workflow-devui/
sonataflow_devmode_devui_url: /q/dev-ui/org.apache.kie.sonataflow.sonataflow-quarkus-devui/
serverless_logic_web_tools_name: Serverless Logic Web Tools
serverless_workflow_vscode_extension_name: KIE Serverless Workflow Editor
kie_kogito_examples_repo_name: incubator-kie-kogito-examples
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ To deploy the finished project to a local cluster, proceed to the next section.

Use the `deploy` command with kn workflow to deploy the {product_name} project into your local cluster.

* Create a namespace for your application
[source,bash]
----
kubectl create namespace my-sf-application
----
* Deploy to cluster
[source,bash]
----
Expand All @@ -65,7 +70,7 @@ Minikube::
minikube service hello --namespace my-sf-application --url
----
* Use this URL to access your workflow instances using the Developer UI
** <RETURNED_URL>{sonataflow_devmode_devui_url}workflowInstances
** <RETURNED_URL>{sonataflow_devmode_devui_url}workflows
--
Kind::
+
Expand All @@ -90,7 +95,7 @@ kubectl port-forward service/hello <RANDOM_PORT>:80 -n my-sf-application
* To stop the deployment, use the `undeploy` command:
[source,bash]
----
kn worklow undeploy --namespace my-sf-application
kn workflow undeploy --namespace my-sf-application
----
* You can validate your pod is terminating using k9s cli.

Expand Down