-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
129 lines (117 loc) · 3.81 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
site_name: Inlets
site_description: Inlets Secure Tunnels From Dev to Cloud
site_author: OpenFaaS Ltd
site_url: https://docs.inlets.dev/
# Repository
repo_name: inlets/inlets
repo_url: https://github.com/inlets
edit_uri: ""
copyright: |
Copyright © 2021 OpenFaaS Ltd
theme:
name: material
# custom_dir: docs/theme
logo: images/logo.svg
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto, Helvetica
code: Roboto Mono
features:
- navigation.tracking
- navigation.sections
# - toc.integrate
# - navigation.instant
include_search_page: false
search_index_only: true
language: en
# favicon: images/favicon.ico
logo: images/logo.svg
extra:
search:
languages: "en"
social:
- icon: fontawesome/brands/github
link: https://github.com/inlets/
- icon: fontawesome/brands/twitter
link: https://twitter.com/inletsdev
plugins:
- search
markdown_extensions:
- attr_list
- md_in_html
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- markdown.extensions.def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
nav:
- Overview:
- Introduction: index.md
- FAQ: /reference/faq/
- Tutorials:
- Automated HTTPs tunnel server: /tutorial/automated-http-server/
- Manual HTTPs tunnel server: /tutorial/manual-http-server/
- Manual TCP tunnel server: /tutorial/manual-tcp-server/
- Dual TCP and HTTPs server: /tutorial/dual-tunnels/
- IP Allow list (ext): https://inlets.dev/blog/2021/10/15/allow-lists.html
- Docker Compose (ext): https://inlets.dev/blog/2021/09/09/compose-and-inlets.html
- Community tutorials: /tutorial/community/
- Tutorials for TCP tunnels:
- Run Caddy on a private network: /tutorial/caddy-http-tunnel/
- Local port forwarding: https://inlets.dev/blog/2021/04/13/local-port-forwarding-kubernetes.html
- Tunnel SSH: /tutorial/ssh-tcp-tunnel/
- Tunnel Postgresql: /tutorial/postgresql-tcp-tunnel/
- Kubernetes:
- Kubernetes Ingress: /tutorial/kubernetes-ingress/
- Kubernetes API Server: /tutorial/kubernetes-api-server/
- Istio Gateway: /tutorial/istio-gateway/
- Helm charts (ext): https://github.com/inlets/inlets-pro/tree/master/chart
- Local port forwarding (ext): https://inlets.dev/blog/2022/06/24/fixing-kubectl-port-forward.html
- Manage private clusters with ArgoCD (ext): https://inlets.dev/blog/2022/08/10/managing-tunnel-servers-with-argocd.html
- Inlets Uplink:
- Overview: /uplink/overview/
- Become a provider: /uplink/become-a-provider/
- Create a tunnel: /uplink/create-tunnels/
- Manage tunnels: /uplink/manage-tunnels/
- Connect to tunnels: /uplink/connect-to-tunnels/
- Monitor tunnels: /uplink/monitoring-tunnels/
- Ingress for tunnels: /uplink/ingress-for-tunnels/
- Reference:
- Overview: reference.md
- Inlets Operator: /reference/inlets-operator/
- inletsctl: /reference/inletsctl/
- Monitoring and metrics: /tutorial/monitoring-and-metrics/
extra:
analytics:
provider: google
property: G-MVH8L09LKP
anonymize_ip: true