-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathzensical.toml
More file actions
145 lines (136 loc) · 5.44 KB
/
zensical.toml
File metadata and controls
145 lines (136 loc) · 5.44 KB
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
# ============================================================================
# Zensical configuration for EOEPCA Deployment Guide
# Migrated from mkdocs.yml
# See https://zensical.org/docs/ for documentation
# ============================================================================
[project]
site_name = "EOEPCA Deployment Guide"
site_url = "https://eoepca.readthedocs.io/projects/deploy/en/latest/"
repo_url = "https://github.com/EOEPCA/deployment-guide"
repo_name = "EOEPCA/deployment-guide"
edit_uri = "edit/main/docs/"
extra_css = ["css/eoepca.css"]
nav = [
{"EOEPCA+ Deployment" = [
{"Introduction" = "index.md"},
{"Changelog" = "changelog.md"},
{"Release Strategy" = "release-strategy.md"},
{"Deployments" = [
{"EOEPCA+ Prerequisites" = "deployments/eoepca-prerequisites.md"},
{"Building Blocks" = "deployments/building-blocks.md"}
]}
]},
{"EOEPCA+ Prerequisites" = [
{"Overview" = "prerequisites/prerequisites-overview.md"},
{"Kubernetes Requirements" = "prerequisites/kubernetes.md"},
{"Storage Requirements" = "prerequisites/storage.md"},
{"Ingress Setup" = [
{"Overview" = "prerequisites/ingress/overview.md"},
{"APISIX Ingress" = "prerequisites/ingress/apisix.md"},
{"Nginx Ingress" = "prerequisites/ingress/nginx.md"},
{"Ingress Gateway" = "prerequisites/ingress/gateway.md"}
]},
{"TLS Management" = "prerequisites/tls.md"},
{"Optional Components" = [
{"Crossplane" = "prerequisites/crossplane.md"},
{"S3 Storage (MinIO)" = "prerequisites/minio.md"},
{"Container Registry" = "prerequisites/container-registry.md"}
]},
{"Application Deployment →" = "prerequisites/application-deployment.md"}
]},
{"Building Blocks" = [
{"Deployment Overview" = "building-blocks/overview.md"},
{"Identity & Access (IAM)" = [
{"Deployment" = "building-blocks/iam/main-iam.md"},
{"Client Administration" = "building-blocks/iam/client-management.md"},
{"Advanced Configuration" = "building-blocks/iam/advanced-iam.md"}
]},
{"Data" = [
{"Resource Discovery" = "building-blocks/resource-discovery.md"},
{"Resource Registration" = "building-blocks/resource-registration.md"},
{"Data Access" = "building-blocks/data-access.md"},
{"Datacube Access" = "building-blocks/datacube-access.md"},
{"Data Gateway" = "building-blocks/data-gateway.md"}
]},
{"Processing & Analysis" = [
{"Processing" = [
{"Overview" = "building-blocks/processing.md"},
{"OGC API Processes" = "building-blocks/oapip-engine.md"},
{"openEO Geotrellis" = "building-blocks/openeo-geotrellis.md"},
{"openEO Argo Workflows (Dask)" = "building-blocks/openeo-argo.md"}
]},
{"MLOps" = "building-blocks/mlops.md"}
]},
{"User Environments" = [
{"Workspace" = "building-blocks/workspace.md"},
{"Application Hub" = "building-blocks/application-hub.md"}
]},
{"Platform Monitoring & Quality" = [
{"Resource Health" = "building-blocks/resource-health.md"},
{"Application Quality" = "building-blocks/application-quality.md"}
]}
]},
{"Further EOEPCA+ Documentation" = "https://eoepca.readthedocs.io/"}
]
# ----------------------------------------------------------------------------
# Theme configuration
# ----------------------------------------------------------------------------
[project.theme]
# Use the classic variant to preserve Material for MkDocs look and feel
variant = "classic"
custom_dir = "overrides"
logo = "img/favicon.ico"
favicon = "img/favicon.ico"
language = "en"
features = [
"navigation.footer",
"navigation.instant",
"navigation.tracking",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.sections",
"navigation.top",
"content.code.copy",
"content.action.edit",
]
# ----------------------------------------------------------------------------
# Markdown extensions
# The following includes the zensical defaults plus extensions from mkdocs.yml
# ----------------------------------------------------------------------------
[project.markdown_extensions.tables]
[project.markdown_extensions.toc]
permalink = "⚓︎"
toc_depth = 4
[project.markdown_extensions.smarty]
[project.markdown_extensions.sane_lists]
[project.markdown_extensions.admonition]
[project.markdown_extensions.abbr]
[project.markdown_extensions.attr_list]
[project.markdown_extensions.def_list]
[project.markdown_extensions.footnotes]
[project.markdown_extensions.md_in_html]
[project.markdown_extensions.pymdownx.arithmatex]
generic = true
[project.markdown_extensions.pymdownx.betterem]
smart_enable = "all"
[project.markdown_extensions.pymdownx.caret]
[project.markdown_extensions.pymdownx.details]
[project.markdown_extensions.pymdownx.emoji]
emoji_generator = "zensical.extensions.emoji.to_svg"
emoji_index = "zensical.extensions.emoji.twemoji"
[project.markdown_extensions.pymdownx.highlight]
anchor_linenums = true
line_spans = "__span"
pygments_lang_class = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.keys]
[project.markdown_extensions.pymdownx.mark]
[project.markdown_extensions.pymdownx.smartsymbols]
[project.markdown_extensions.pymdownx.superfences]
[project.markdown_extensions.pymdownx.tabbed]
alternate_style = true
[project.markdown_extensions.pymdownx.tasklist]
custom_checkbox = true
[project.markdown_extensions.pymdownx.tilde]
[project.markdown_extensions.pymdownx.snippets]
auto_append = ["includes/abbreviations.md"]