-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(apps): deploy shiori in place of wallabag
Unfortunately I could not get wallabag to work properly. A lot of issues with migrations and generally a very bad experience operating the application.
- Loading branch information
Showing
11 changed files
with
95 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ resources: | |
- octobot | ||
- zettelkasten-exporter | ||
- traggo | ||
- wallabag | ||
- shiori |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: shiori | ||
namespace: shiori | ||
labels: | ||
app.kubernetes.io/name: shiori | ||
spec: | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: shiori | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: shiori | ||
spec: | ||
containers: | ||
- name: shiori | ||
image: "ghcr.io/go-shiori/shiori:latest" | ||
ports: | ||
- name: http | ||
containerPort: 80 | ||
protocol: TCP | ||
volumeMounts: | ||
- mountPath: /app/data | ||
name: data | ||
env: | ||
- name: SHIORI_DIR | ||
value: /app/data | ||
volumes: | ||
- name: data | ||
persistentVolumeClaim: | ||
claimName: mealie-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: shiori | ||
namespace: shiori | ||
labels: | ||
app.kubernetes.io/name: shiori | ||
annotations: | ||
gethomepage.dev/name: shiori | ||
gethomepage.dev/description: Bookmarks manager | ||
gethomepage.dev/enabled: "true" | ||
gethomepage.dev/group: Media | ||
gethomepage.dev/icon: shiori.png | ||
gethomepage.dev/pod-selector: "app.kubernetes.io/name=shiori" | ||
spec: | ||
tls: | ||
- hosts: | ||
- shiori.totorinho.duckdns.org | ||
secretName: duckdns-wildcard-cert-totorinho.duckdns.org | ||
rules: | ||
- host: shiori.totorinho.duckdns.org | ||
http: | ||
paths: | ||
- path: / | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: shiori | ||
port: | ||
number: 8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: wallabag | ||
name: shiori |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: shiori-data | ||
namespace: shiori | ||
labels: | ||
app.kubernetes.io/name: shiori | ||
spec: | ||
storageClassName: local-path | ||
accessModes: | ||
- ReadWriteOnce | ||
resources: | ||
requests: | ||
storage: 10Gi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: shiori | ||
namespace: shiori | ||
labels: | ||
app.kubernetes.io/name: shiori | ||
spec: | ||
selector: | ||
app.kubernetes.io/name: shiori | ||
ports: | ||
- port: 8080 | ||
targetPort: 8080 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.