forked from openshift-evangelists/kbe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
143 lines (134 loc) · 2.88 KB
/
config.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
---
# baseURL: "https://kubernetesbyexample.com"
baseURL: "https://tonejito.github.io/kbe/"
DefaultContentLanguage: en
title: Kubernetes By Example
theme: beautifulhugo
metaDataFormat: yaml
googleAnalytics: UA-34425776-2
security:
exec:
allow:
- ^dart-sass-embedded$
- ^go$
- ^npx$
- ^postcss$
- ^asciidoctor$
- ^pandoc$
Params:
subtitle: Brought to you by the OpenShift team
logo: img/kbe-logo.png
favicon: img/kbe-logo.ico
dateFormat: '2006-01-02'
commit: false
rss: false
custom_css:
- css/custom.css
watermark: For testing purposes only
annoying_banner_ad: false
markup:
goldmark:
renderer:
unsafe: true # default is false
highlight:
style: tango # default is monokai
menu:
main:
- name: Try out!
identifier: try-out
url: diy/
weight: '3'
- name: Contribute
identifier: contribute
url: 'https://github.com/openshift-evangelists/kbe.git'
weight: '2'
# Legacy content that should be kept as-is
- name: Hands-on Examples
identifier: hands-on
url: /
weight: '1'
- name: Pods
parent: hands-on
url: pods/
weight: '1'
- name: Labels
parent: hands-on
url: labels/
weight: '2'
- name: Deployments
parent: hands-on
url: deployments/
weight: '3'
- name: Services
parent: hands-on
url: services/
weight: '4'
- name: Service Discovery
parent: hands-on
url: sd/
weight: '5'
- name: Port Forward
parent: hands-on
url: pf/
weight: '6'
- name: Health Checks
parent: hands-on
url: healthz/
weight: '7'
- name: Environment Variables
parent: hands-on
url: envs/
weight: '8'
- name: Namespaces
parent: hands-on
url: ns/
weight: '9'
- name: Volumes
parent: hands-on
url: volumes/
weight: '10'
- name: Persistent Volumes
parent: hands-on
url: pv/
weight: '11'
- name: Secrets
parent: hands-on
url: secrets/
weight: '12'
- name: Logging
parent: hands-on
url: logging/
weight: '13'
- name: Jobs
parent: hands-on
url: jobs/
weight: '14'
- name: Stateful Sets
parent: hands-on
url: statefulset/
weight: '15'
- name: Init Containers
parent: hands-on
url: ic/
weight: '16'
- name: Nodes
parent: hands-on
url: nodes/
weight: '17'
- name: API Server
parent: hands-on
url: api/
weight: '18'
# Add your own content under "content/topics/<name>"
- name: Other topics
identifier: topics
url: /
weight: '1'
- name: MetalLB
parent: topics
url: topics/metallb/metallb/
weight: '1'
- name: Istio
parent: topics
url: topics/istio/istio/
weight: '2'