-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
142 lines (138 loc) · 5.88 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
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
site_name: Cloud Native Bootcamp
repo_url: https://github.com/ibm-cloud-architecture/cloud-native-bootcamp
theme:
name: material
features:
- content.code.copy
- content.tabs.link
- navigation.top
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.expand
- navigation.prune
- navigation.indexes
- navigation.footer
- toc.follow
- search.suggest
- search.share
icon:
repo: fontawesome/brands/github
logo: images/watson-white-logo.png
favicon: images/watson-white-logo.png
font:
text: IBM Plex Sans Light
plugins:
- search
- git-revision-date-localized:
type: date
fallback_to_build_date: true
strict: false
extra_css:
- stylesheets/index.css
markdown_extensions:
- attr_list
- admonition
- pymdownx.details
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- md_in_html
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- tables
nav:
- Home:
- index.md
- Course Agenda: agenda.md
- Prerequisites: prerequisites.md
- Cloud Native Challenge: cloudnative-challenge.md
- Cloud:
- cloud/index.md
- Benefits of Cloud: cloud/benefits.md
- Cloud Concepts: cloud/cn-concepts.md
- Cloud Applications: cloud/cn-apps.md
- Containers:
- containers/index.md
- References: containers/reference.md
- Image Registries: containers/imageregistry.md
- Activities/Labs:
- labs/index.md
- Docker: labs/containers/index.md
- Container Registries: labs/containers/container-registry/index.md
- <div class="header">Kubernetes/OpenShift</div>:
- openshift/index.md
- <div class="sub-section">API Primatives</div>: openshift/core-concepts/index.md
- <div class="sub-section">Namespaces/Projects</div>: openshift/core-concepts/namespaces-projects/index.md
- <div class="header">Pods</div>:
- openshift/pods/index.md
- <div class="sub-section">Labels-Selectors</div>: openshift/pods/tagging/index.md
- <div class="sub-section">Multi-Container</div>: openshift/pods/multi-container/index.md
- <div class="sub-section">Health and Monitoring</div>: openshift/pods/health-checks/index.md
- <div class="sub-section">Troubleshooting</div>: openshift/pods/troubleshooting/index.md
- <div class="header">Configuration</div>:
- openshift/configuration/index.md
- <div class="sub-section">Config Maps</div>: openshift/configuration/config-map/index.md
- <div class="sub-section">Secrets</div>: openshift/configuration/secrets/index.md
- <div class="sub-section">Security Contexts</div>: openshift/configuration/security-contexts/index.md
- <div class="sub-section">Service Accounts</div>: openshift/configuration/service-accounts/index.md
- <div class="header">Deployments</div>:
- openshift/deployments/index.md
- <div class="sub-section">Rolling Updates</div>: openshift/deployments/updates/index.md
- <div class="sub-section">Jobs and CronJobs</div>: openshift/pods/jobs/index.md
- <div class="header">Networking</div>:
- openshift/services-networking/index.md
- <div class="sub-section">Services</div>: openshift/services-networking/services.md
- <div class="sub-section">Routes</div>: openshift/services-networking/routes.md
- <div class="sub-section">Ingresses</div>: openshift/services-networking/ingress.md
- <div class="header">State Persistence</div>:
- openshift/state-persistence/index.md
- <div class="sub-section">Volumes</div>: openshift/state-persistence/volumes.md
- <div class="sub-section">Persistent Volumes & Claims</div>: openshift/state-persistence/pv-pvc.md
- <div class="header">Operators</div>:
- openshift/operators/operators.md
- DevOps/GitOps:
- devops/index.md
- <div class="header">Continuous Integration</div>:
- devops/tekton/index.md
- <div class="sub-section">Tekton</div>: devops/tekton/index.md
- <div class="sub-section">IBM ToolChain</div>: devops/ibm-toolchain/index.md
- <div class="header">Continuous Deployment</div>:
- devops/argocd/index.md
- ArgoCD: devops/argocd/index.md
- Activities/Labs:
- labs/index.md
- Containers:
- labs/index.md
- Docker: labs/containers/index.md
- Container Registries: labs/containers/container-registry/index.md
- Kubernetes/OpenShift:
- labs/index.md
- Lab 1 - Pod Creation: labs/kubernetes/lab1/index.md
- Lab 2 - Pod Configuration: labs/kubernetes/lab2/index.md
- Lab 3 - Multiple Containers: labs/kubernetes/lab3/index.md
- Lab 4 - Probes: labs/kubernetes/lab4/index.md
- Lab 5 - Debugging: labs/kubernetes/lab5/index.md
- Lab 6 - Rolling Updates: labs/kubernetes/lab6/index.md
- Lab 7 - Cron Jobs: labs/kubernetes/lab7/index.md
- Lab 8 - Creating Services: labs/kubernetes/lab8/index.md
- Lab 9 - Network Policies: labs/kubernetes/lab9/index.md
- Lab 10 - Persistent Volumes: labs/kubernetes/lab10/index.md
- Lab 11 - Ingress IKS: labs/kubernetes/ingress-iks/index.md
- Solutions: labs/kubernetes/lab-solutions.md
- DevOps/GitOps:
- labs/index.md
- Tekton: labs/devops/tekton/index.md
- Jenkins: labs/devops/jenkins/index.md
- IBM Cloud: labs/devops/ibm-toolchain/index.md
- ArgoCD: labs/devops/argocd/index.md