-
Notifications
You must be signed in to change notification settings - Fork 27
/
mkdocs.yml
45 lines (44 loc) · 1.09 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
42
43
44
site_name: 'Cloud Native Security Tutorial'
site_description: 'Getting started with cloud native security'
site_author: 'Liz Rice and Michael Hausenblas'
repo_name: 'k8s-sec/cloud-native-security-tutorial'
repo_url: 'https://github.com/k8s-sec/cloud-native-security-tutorial'
copyright: 'Copyright © Liz Rice and Michael Hausenblas'
docs_dir: 'docs'
nav:
- Home:
- Overview: index.md
- Introduction: introduction.md
- Preparation: preparation.md
- Exercises:
- Compromised pod: compromise.md
- Scanning: scanning.md
- Policies: policies.md
- Secure settings: settings.md
- GitOps: gitops.md
- Conclusion:
- conclusions.md
theme:
name: 'material'
features:
- 'tabs'
- 'instant'
icon:
logo: 'material/lock'
font:
text: 'Lato'
code: 'PT Mono'
palette:
primary: 'blue'
accent: 'orange'
highlightjs: true
hljs_languages:
- yaml
- json
- bash
markdown_extensions:
- toc:
permalink: true
- admonition
- codehilite:
linenums: true