-
Notifications
You must be signed in to change notification settings - Fork 14
/
mkdocs.yml
176 lines (170 loc) · 5.65 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
# Project information
site_name: Gluu Flex Documentation
site_description: Gluu Flex Project Deployment and Operation References
site_author: Gluu, Inc.
site_url: https://docs.gluu.org
# Copyright
copyright: Copyright © 2024, Gluu Flex
# Repository
docs_dir: ./docs
repo_name: GitHub
repo_url: https://github.com/GluuFederation/flex
edit_uri: edit/main/docs/
# Plugins
plugins:
- include-markdown
- tags
- search
- git-revision-date-localized:
type: timeago
enable_creation_date: true
- git-committers:
repository: GluuFederation/flex
# Configuration
theme:
name: material
highlightjs: true
hljs_languages:
- yaml
- java
- bash
- python
shortcuts:
help: 191 # ?
next: 78 # n
previous: 80 # p
search: 83 # s
language: 'en'
font:
text: Roboto
code: Roboto Mono
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
primary: green
accent: green
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
primary: green
accent: green
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
primary: green
accent: green
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
logo: 'assets/logo/gluu.png'
favicon: 'assets/logo/favicon.ico'
features:
- toc.autohide
- search.suggest
- search.highlight
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
extra_css:
- css/tabs.css
- stylesheets/mermaid-extra.css
# Extensions
markdown_extensions:
- admonition
- attr_list
- toc:
permalink: '#'
- codehilite
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/GluuFederation/flex
name: Gluu Flex on GitHub
- icon: fontawesome/solid/link
link: https://gluu.org
name: Gluu Website
version:
provider: mike
default: stable
# Navigation
nav:
- 'Overview': 'README.md'
- 'Installation':
- 'install/README.md'
- 'Prerequisites': 'install/agama/prerequisites.md'
- 'Helm Deployments':
- 'install/helm-install/README.md'
- 'Local Kubernetes Cluster': 'install/helm-install/local.md'
- 'Amazon EKS': 'install/helm-install/amazon-eks.md'
- 'Google GKE': 'install/helm-install/google-gke.md'
- 'Microsoft Azure AKS': 'install/helm-install/microsoft-azure.md'
- 'Rancher Marketplace': 'install/helm-install/rancher.md'
- 'Docker Deployments':
- 'Quick Start': 'install/docker-install/quick-start.md'
- 'Docker compose': 'install/docker-install/compose.md'
- 'VM Installation':
- 'install/vm-install/vm-requirements.md'
- 'Ubuntu': 'install/vm-install/ubuntu.md'
- 'RHEL': 'install/vm-install/rhel.md'
- 'SUSE': 'install/vm-install/suse.md'
- 'Administration':
- 'admin/README.md'
- 'Configuration': 'admin/config.md'
- 'K8s Operations Guide':
- 'admin/kubernetes-ops/README.md'
- 'Upgrade': 'admin/kubernetes-ops/upgrade.md'
- 'Admin-UI Private': 'admin/kubernetes-ops/admin-ui-private.md'
- 'Admin UI':
- 'Introduction': 'admin/admin-ui/introduction.md'
- 'Design & Implementation':
- 'Auth Server Interaction': 'admin/admin-ui/auth-server-interaction.md'
- 'Configuration': 'admin/admin-ui/configuration.md'
- 'Logs': 'admin/admin-ui/logs.md'
- 'Left Navigation Menu':
- 'admin/admin-ui/left-nav-menu.md'
- 'Home': 'admin/admin-ui/dashboard.md'
- 'Admin': 'admin/admin-ui/admin-menu.md'
- 'Auth server': 'admin/admin-ui/auth-server-menu.md'
- 'Schema': 'admin/admin-ui/schema-menu.md'
- 'Services': 'admin/admin-ui/services-menu.md'
- 'FIDO': 'admin/admin-ui/fido-menu.md'
- 'SMTP': 'admin/admin-ui/smtp-menu.md'
- 'Users': 'admin/admin-ui/userMgmt-menu.md'
- 'FAQ & Troubleshooting': 'admin/admin-ui/faq.md'
- 'Flex Recipes':
- 'admin/recipes/README.md'
- 'Getting Started with Rancher': 'admin/recipes/getting-started-rancher.md'
- 'Reference':
- 'reference/kubernetes/README.md'
- 'Flex Helm Chart': 'reference/kubernetes/helm-chart.md'
- 'Flex Monolith Docker Image': 'reference/kubernetes/docker-flex-monolith.md'
- 'Admin UI Docker Image': 'reference/kubernetes/docker-admin-ui.md'
- 'Super Gluu':
- 'supergluu/index.md'
- User Guide: 'supergluu/user-guide/index.md'
- Administration Guide: 'supergluu/admin-guide/index.md'
- Developer Guide: 'supergluu/developer-guide/index.md'
- 'Open Banking':
- Overview: openbanking/index.md
- Installation:
- Cloud-Native: openbanking/install-cn.md
- VM (only recommended for development/testing): openbanking/install-vm.md
- Operation Guide:
- Configuration Instructions: openbanking/configuration-instructions.md
- Managing scripts with CURL: openbanking/curl.md
- Managing Scripts with the jans-cli: openbanking/jans-cli.md
- PAR and JARM: openbanking/par-jarm.md