Note: The Chatbot code sample uses the 8501 HTTP port.
Before you begin creating an application with this devfile
code sample, it's helpful to understand the relationship between the devfile
and Containerfile
and how they contribute to your build. You can find these files at the following URLs:
- The
devfile.yaml
file has animage-build
component that points to yourContainerfile
. - The
Containerfile
contains the instructions you need to build the code sample as a container image. - The
devfile.yaml
kubernetes-deploy
component points to adeploy.yaml
file that contains instructions for deploying the built container image. - The
devfile.yaml
deploy
command completes the outerloop deployment phase by pointing to theimage-build
andkubernetes-deploy
components to create your application.
- For more information about the Chatbot AI Sample, see redhat-ai-dev/ai-lab-samples repository or Chatbot application document.
- For more information about devfiles, see Devfile.io.
- For more information about Containerfiles, see Containerfile reference.