Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, and monospace. Itemized lists
look like:
- this one
- that one
| version: "3" | |
| services: | |
| sonarqube: | |
| image: sonarqube | |
| expose: | |
| - 9000 | |
| ports: | |
| - "127.0.0.1:9000:9000" | |
| networks: |
| #!/bin/bash | |
| # Bash shell script for generating self-signed certs. Run this in a folder, as it | |
| # generates a few files. Large portions of this script were taken from the | |
| # following artcile: | |
| # | |
| # http://usrportage.de/archives/919-Batch-generating-SSL-certificates.html | |
| # | |
| # Additional alterations by: Brad Landers | |
| # Date: 2012-01-27 |
| version: '2' | |
| services: | |
| ##### Reverse Proxy ##### | |
| rev: | |
| image: nginx:1.15.8 | |
| restart: always | |
| ports: |
| version: '2' | |
| services: | |
| gitlab: | |
| container_name: gitlab | |
| image: gitlab/gitlab-ce:latest | |
| restart: always | |
| environment: | |
| GITLAB_OMNIBUS_CONFIG: | | |
| ## GitLab configuration settings | |
| ##! Check out the latest version of this file to know about the different |
| ## | |
| # @server studio | |
| # @host hackisition.com | |
| # @desc nginx host rules | |
| # @author Julien Le Coupanec <julien@gentlenode.com> | |
| ## | |
| # HTTP Server | |
| server { | |
| listen 80; |
Thanks to @luxas create the Kubernetes on ARM project. But my project has some different, i have a VM on x86 as master node and two nvidia tx2 development kits as work node. So my kubernetes cluster are multi-platform. I use kubeadm as a deployment method.Some basic information of my platform is as follows.
kubeadm version (use kubeadm version):1.10.0
Environment:
kubectl version):1.10.0| version: "2" | |
| services: | |
| db: | |
| image: mariadb | |
| environment: | |
| - MYSQL_ROOT_PASSWORD=test | |
| - MYSQL_DATABASE=radio | |
| volumes: | |
| - ./database:/var/lib/mysql | |
| phpmyadmin: |