You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Flame is self-hosted startpage for your server. Its design is inspired (heavily)
22
22
- TypeScript
23
23
- Deployment
24
24
- Docker
25
+
- Kubernetes
25
26
26
27
## Development
27
28
@@ -80,6 +81,13 @@ services:
80
81
restart: unless-stopped
81
82
```
82
83
84
+
#### Skaffold
85
+
86
+
```sh
87
+
# use skaffold
88
+
skaffold dev
89
+
```
90
+
83
91
### Without Docker
84
92
85
93
Follow instructions from wiki: [Installation without Docker](https://github.com/pawelmalak/flame/wiki/Installation-without-docker)
@@ -170,6 +178,21 @@ labels:
170
178
171
179
And you must have activated the Docker sync option in the settings panel.
172
180
181
+
### Kubernetes integration
182
+
183
+
In order to use the Kubernetes integration, each ingress must have the following annotations:
184
+
185
+
```yml
186
+
metadata:
187
+
annotations:
188
+
- flame.pawelmalak/type=application # "app" works too
189
+
- flame.pawelmalak/name=My container
190
+
- flame.pawelmalak/url=https://example.com
191
+
- flame.pawelmalak/icon=icon-name # Optional, default is "kubernetes"
192
+
```
193
+
194
+
And you must have activated the Kubernetes sync option in the settings panel.
195
+
173
196
### Custom CSS
174
197
175
198
> This is an experimental feature. Its behaviour might change in the future.
0 commit comments