diff --git a/source/Makefile b/source/Makefile index 6ef592c3..cf5be449 100644 --- a/source/Makefile +++ b/source/Makefile @@ -6,6 +6,7 @@ SPHINXOPTS = SPHINXBUILD = sphinx-build PAPER = BUILDDIR = _build +SCRIPTDIR = scripts/_python # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) @@ -56,6 +57,9 @@ html: @echo @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." +py: + $(MAKE) -C $(SCRIPTDIR) py + dirhtml: $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml @echo @@ -73,6 +77,7 @@ pickle: json: $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + $(MAKE) -C $(SCRIPTDIR) py @echo @echo "Build finished; now you can process the JSON files." diff --git a/source/clear-linux/get-started/virtual-machine-install/kvm.rst b/source/clear-linux/get-started/virtual-machine-install/kvm.rst index 718bd559..5f8cd200 100644 --- a/source/clear-linux/get-started/virtual-machine-install/kvm.rst +++ b/source/clear-linux/get-started/virtual-machine-install/kvm.rst @@ -64,8 +64,19 @@ Download and launch the virtual machine unxz clear--kvm.img.xz #. Download the `OVMF file`_ file that provides UEFI support for - virtual machines from the `image `_ - directory. + virtual machines from the `image `_ directory. + +#. Copy :file:`OVMF.fd` to the working directory, as shown below. + + .. code-block:: bash + + cp /usr/share/qemu/OVMF.fd + + .. note:: + + Replace with your own. + + For non-Clear Linux hosts, the preferred approach is to download it from https://cdn.download.clearlinux.org/image/OVMF.fd #. Download the sample `QEMU-KVM launcher`_ script from the `image `_ directory. This script diff --git a/source/clear-linux/tutorials/dlrs.rst b/source/clear-linux/tutorials/dlrs.rst index af828320..113f3c8e 100644 --- a/source/clear-linux/tutorials/dlrs.rst +++ b/source/clear-linux/tutorials/dlrs.rst @@ -141,7 +141,12 @@ cycle. ksonnet\* ********* -Kubeflow uses ksonnet* to manage deployments, so we need to install that before setting up Kubeflow. On |CL|, follow these steps: +Kubeflow uses ksonnet* to manage deployments, so we need to install that before setting up Kubeflow. + +Since Clear Linux version 27550, the ksonnet was added to the bundle cloud-native-basic. But if using +old versions (not recommended), please manually install the ksonnet as below. + +On |CL|, follow these steps: .. code-block:: bash diff --git a/source/scripts/_python/Makefile b/source/scripts/_python/Makefile index d7b5ffc2..92d7e523 100644 --- a/source/scripts/_python/Makefile +++ b/source/scripts/_python/Makefile @@ -2,7 +2,7 @@ py: python bundle_lister.py cp bundles.html.txt ../../clear-linux/reference/bundles - rm -rf cloned_repo/* + rm -rf bundle_lister/cloned_repo/* rm bundles.html.txt @echo "Python script finished successfully!"