-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
41 lines (41 loc) · 1.48 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
site_name: 'Cloud Native Developers JP - ハンズオンチュートリアル'
repo_name: 'cndjp/tutorials'
repo_url: 'https://github.com/cndjp/tutorials'
theme:
name: material
palette:
primary: 'teal'
accent: 'teal'
language: 'ja'
logo:
icon: 'cloud'
markdown_extensions:
- admonition
- codehilite
- def_list
- fontawesome_markdown
- footnotes
- pymdownx.keys
- toc:
permalink: true
extra:
search:
language: 'en, jp'
social:
- type: 'github'
link: 'https://github.com/cndjp'
extra_css:
- 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css'
- 'stylesheets/extra.css'
pages:
- Home: index.md
- Kubernetesの基礎:
- 最初のアプリケーションを動かしてみる: 'documents/kubernetes-basics/play-with-bootcamp-app.md'
- Kubernetesにおけるログの収集: 'documents/kubernetes-basics/logging.md'
- Web-AP-DBの3層アプリケーションが動くまで: 'documents/kubernetes-basics/deploy-3tier-app.md'
- サービスメッシュ Istio:
- Istioのインストール: 'documents/istio/install-istio.md'
- リクエスト・ルーティングの制御: 'documents/istio/configuring-request-routing.md'
- ローカルクラスターの作成:
- Vagrant CoreOS Cluster: 'documents/create-local-cluster/vagrant-coreos-cluster.md'
- minikube: 'documents/create-local-cluster/minikube.md'