Skip to content

Add tags to tutorials #34

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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
7 changes: 5 additions & 2 deletions docs/tutorials/docker/docker-on-wsl/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
description: Tutorial on how to install and configure Docker and Docker Compose on Ubuntu running inside Windows Subsystem for Linux.
tags:
- Docker
- Windows Subsystem for Linux
---

# Install Docker on Windows Subsystem for Linux
Expand Down Expand Up @@ -73,7 +76,7 @@ If not launched automatically, open the installed Ubuntu distro (e.g., by clicki

Open Ubuntu you just installed and follow [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) instructions.

__tl;dr:__ Run the convenience script available in `get.docker.com`:
**tl;dr:** Run the convenience script available in `get.docker.com`:

```sh
curl -fsSL https://get.docker.com -o get-docker.sh
Expand Down Expand Up @@ -172,7 +175,7 @@ If `docker` commands print `Cannot connect to the Docker daemon at unix:///var/r

Follow [Install Docker Compose](https://docs.docker.com/compose/install/) instructions for Linux.

__tl;dr:__ Install Docker Compose with the distros package manager:
**tl;dr:** Install Docker Compose with the distros package manager:

```sh
sudo apt-get update
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorials/gitlab-ci/docker-hub-ratelimit/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
description: Tutorial on how to test if Docker-in-Docker service in GitLab CI accesses Docker Hub directly and how to configure pull-through cache to an Kubernetes cluster working as a GitLab runner.
tags:
- Docker
- GitLab CI
---

# Docker-in-Docker service and Docker Hub ratelimit
Expand Down
4 changes: 4 additions & 0 deletions docs/tutorials/jenkins/ansible-kubernetes/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
description: Tutorial on how to configure a Jenkins pipeline that deploys an simple hello-world application to a Kubernetes cluster.
tags:
- Ansible
- Jenkins
- Kubernetes
---

# Deploy application to Kubernetes with Ansible
Expand Down
2 changes: 2 additions & 0 deletions docs/tutorials/jenkins/build-status-pipelines/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
description: Tutorial on how to configure a Jenkins pipeline that creates pipelines with five different statuses into a new folder using Job DSL.
tags:
- Jenkins
---

# Build status pipelines and Job DSL
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorials/jenkins/jenkins-host-docker/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
description: Tutorial on how to run Jenkins inside a container with Docker client that controls host machines Docker engine using a socket.
tags:
- Docker
- Jenkins
---

# Jenkins with access to hosts Docker engine
Expand Down
4 changes: 4 additions & 0 deletions docs/tutorials/jenkins/parallel-robot-pipeline/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
---
description: Tutorial on how to configure a Jenkins pipeline that executes Robot Framework automation tasks with docker agent in parallel stages as well as combines and stores the produced HTML/XML report files.
tags:
- Docker
- Jenkins
- Robot Framework
---

# Parallel Robot Framework pipeline
Expand Down
3 changes: 3 additions & 0 deletions docs/tutorials/jenkins/sonarqube-jenkins/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
description: Tutorial on how to push code scanning results from Jenkins pipeline to SonarQube and how to display SonarQube data in Jenkins.
tags:
- Jenkins
- SonarQube
---

# Integrating Jenkins and SonarQube
Expand Down
1 change: 1 addition & 0 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ plugins:
enable_creation_date: true
- search
- social
- tags

markdown_extensions:
- admonition
Expand Down
Loading