DEV Community

Cover image for Create and deploy API documentation to Kubernetes
mlepeshkin
mlepeshkin

Posted on

Create and deploy API documentation to Kubernetes

A lot of ‘no code’ and ‘low code’ tools enable not just programmers but almost any other professionals to use APIs. A Swagger (Open API) definition is essential when a user wants to touch your API. But it isn’t enough, especially when a user trying to understand it and how it could be used. So this means when releasing an API for public nice clear documentation is absolutely vital. Let’s create one in just four steps:

  1. Generate Markdown from Swagger specification. We will use Widdershins for this.
  2. Edit your markdown to add some details. You can do this on your own.
  3. Generate a static site from this Markdown. We will use Slate for this. And then we will put the site to a docker container along with Nginx web server.
  4. Build a Helm chart to make Kubernetes easy to deploy.

There is the option for the last two steps of not to building the custom docker image, but using a standard Nginx image and mount volumes with the site data and configuration files. I prefer to have a complete docker image in the registry to be sure that all things are in place and to have an ability to deploy with a single command.

Now let’s start building our site with an API documentation.

From Swagger to Markdown

First you need to install node.js, npm and Widdershins. To install Widdershins run:

npm install -g widdershins
Enter fullscreen mode Exit fullscreen mode

Download you swagger specification (i.e. swagger.json) and generate Markdown file from it:

mkdir docs
cd docs
wget https://petstore.swagger.io/v2/swagger.json
widdershins --language_tabs 'shell:Shell' 'python:Python' 'javascript:JavaScript' -o apidocs.md swagger.json
cd ..
Enter fullscreen mode Exit fullscreen mode

You can specify languages to generate examples using the --language_tabs command line argument. In the example above we have chosen Shell (for curl example), Python and JavaScript.

Now feel free to edit this intermediate documentation file and fill it with additional information about your API. Don’t forget to commit the file to Git or another version control system you use.

Building a static site

If you are going to use Slate from the console you need to install it, along with all its prerequisites, as described here. In Ubuntu you can execute the commands:

sudo apt install ruby ruby-dev build-essential libffi-dev zlib1g-dev liblzma-dev nodejs patch
sudo gem install bundler
Enter fullscreen mode Exit fullscreen mode

Fork the official Slate repository to your Github or Gitlab.

To run Slate clone a previously forked repository and execute:

git clone https://gitlab.com/YOURUSERNAME/slate.git
cd slate
bundle install
Enter fullscreen mode Exit fullscreen mode

Now we are ready to build a static site. First you need to copy your intermediate Markdown documentation to the Slate directory and run Slate for build:

cp -rf ../docs/apidocs.md source/index.html.md
bundle exec middleman build --clean
cd ..
Enter fullscreen mode Exit fullscreen mode

Here we have a static site in slate/source directory. You may serve it with your favourite web server. But if you are using Kubernetes for running your web services it is very convenient to deploy this site to your Kubernetes cluster. To prepare for this we will create a Docker image with Nginx web server and our site inside:

Dockerfile
FROM nginx:1.17.10-alpine
EXPOSE 80
COPY nginx.conf /etc/nginx/nginx.conf
COPY slate/build /usr/share/nginx/html
Enter fullscreen mode Exit fullscreen mode
nginx.conf
events {}
http {
    include /etc/nginx/mime.types;
    server {
        listen 80;
        server_name localhost;
        root /usr/share/nginx/html;
        index index.html;
        location / {
            try_files $uri $uri/ /index.html;
        }
    }
}
Enter fullscreen mode Exit fullscreen mode
docker build -f ./Dockerfile -t petstore-api-docs:1.0.0 .
docker push petstore-api-docs:1.0.0
Enter fullscreen mode Exit fullscreen mode

Please note that you should be logged in to your Docker repository to push the image.

If you start it with the command:

docker run -p 3000:80 petstore-api-docs:1.0.0
Enter fullscreen mode Exit fullscreen mode

And open in your browser http://127.0.0.1:3000, you should see something like this:
API documantation homepage

This means you have done everything right and the docker container is ready to use.

Creating Helm chart and deploying

You should have access to the Kubernetes cluster and you should install Helm if you have not:

curl https://baltocdn.com/helm/signing.asc | sudo apt-key add -
sudo apt-get install apt-transport-https --yes
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
sudo apt-get update
sudo apt-get install helm
Enter fullscreen mode Exit fullscreen mode

Next create our chart for the site:

helm create petstore-api-docs
Enter fullscreen mode Exit fullscreen mode

Out-of-the-box helm chart template is fine for such a simple application. You should only set appropriate values in Chart.yaml, for example:

apiVersion: v2
name: petstore-api-docs
description: A Helm chart for petstore-api-docs service
type: application
version: 1.0.1
appVersion: "1.0.1"
Enter fullscreen mode Exit fullscreen mode

You should also go to petstore-api-docs/values.yaml and change the image section:

image:
  repository: your-repository/petstore-api-docs
  pullPolicy: IfNotPresent
  tag: "1.0.0"
Enter fullscreen mode Exit fullscreen mode

You can also change whatever you want there to adapt this chart to your environment. For example, you might want to add some ingress annotations, hostname and TLS data. Don’t forget to test it with helm lint and helm template --debug

And after all you can deploy it to your Kubernetes cluster by executing just one command like this:

helm update -i docs-release petstore-api-docs -n docs-namespace
Enter fullscreen mode Exit fullscreen mode

Based on this approach you may create a CI pipeline covering all build and deploy stages using your favorite tools. In the next article I will show how to do it with Gitlab CI.

Latest comments (0)