Added glance to stack
This commit is contained in:
parent
6d1ebc61d6
commit
dce59dad9c
@ -26,3 +26,17 @@ social.thesatelliteoflove.com {
|
||||
grist.thesatelliteoflove.com {
|
||||
reverse_proxy grist-grist-1:8484
|
||||
}
|
||||
|
||||
home.thesatelliteoflove.com:80 {
|
||||
@allowed {
|
||||
remote_ip 100.64.0.0/10
|
||||
}
|
||||
|
||||
handle @allowed {
|
||||
reverse_proxy glance:8080
|
||||
}
|
||||
|
||||
handle {
|
||||
respond "Access denied" 403
|
||||
}
|
||||
}
|
||||
|
@ -22,6 +22,6 @@
|
||||
- name: deploy caddy stack
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: /opt/stacks/caddy
|
||||
recreate: always
|
||||
recreate: never
|
||||
files:
|
||||
- compose.yml
|
26
roles/docker/tasks/glance.yml
Normal file
26
roles/docker/tasks/glance.yml
Normal file
@ -0,0 +1,26 @@
|
||||
- name: make glance directories
|
||||
ansible.builtin.file:
|
||||
path: "{{ item}}"
|
||||
state: directory
|
||||
loop:
|
||||
- /opt/stacks/glance
|
||||
|
||||
- name: Template out the compose file
|
||||
ansible.builtin.template:
|
||||
src: glance-compose.yml.j2
|
||||
dest: /opt/stacks/glance/compose.yml
|
||||
owner: root
|
||||
mode: 644
|
||||
|
||||
- name: Template out the config file
|
||||
ansible.builtin.template:
|
||||
src: glance.yml.j2
|
||||
dest: /opt/stacks/glance/glance.yml
|
||||
owner: root
|
||||
mode: 644
|
||||
|
||||
- name: deploy glances stack
|
||||
community.docker.docker_compose_v2:
|
||||
project_src: /opt/stacks/glance
|
||||
files:
|
||||
- compose.yml
|
@ -89,3 +89,7 @@
|
||||
- name: Install tasksmd
|
||||
import_tasks: tasksmd.yml
|
||||
tags: tasksmd
|
||||
|
||||
- name: Install glance
|
||||
import_tasks: glance.yml
|
||||
tags: glance
|
13
roles/docker/templates/glance-compose.yml.j2
Normal file
13
roles/docker/templates/glance-compose.yml.j2
Normal file
@ -0,0 +1,13 @@
|
||||
services:
|
||||
glance:
|
||||
image: glanceapp/glance
|
||||
volumes:
|
||||
- ./glance.yml:/app/glance.yml
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
default:
|
||||
external: true
|
||||
name: lava
|
65
roles/docker/templates/glance.yml.j2
Normal file
65
roles/docker/templates/glance.yml.j2
Normal file
@ -0,0 +1,65 @@
|
||||
pages:
|
||||
- name: Home
|
||||
columns:
|
||||
- size: small
|
||||
widgets:
|
||||
- type: calendar
|
||||
|
||||
- type: rss
|
||||
limit: 10
|
||||
collapse-after: 3
|
||||
cache: 3h
|
||||
feeds:
|
||||
- url: https://ciechanow.ski/atom.xml
|
||||
- url: https://www.joshwcomeau.com/rss.xml
|
||||
title: Josh Comeau
|
||||
- url: https://samwho.dev/rss.xml
|
||||
- url: https://awesomekling.github.io/feed.xml
|
||||
- url: https://ishadeed.com/feed.xml
|
||||
title: Ahmad Shadeed
|
||||
|
||||
- type: twitch-channels
|
||||
channels:
|
||||
- theprimeagen
|
||||
- cohhcarnage
|
||||
- christitustech
|
||||
- blurbs
|
||||
- asmongold
|
||||
- jembawls
|
||||
|
||||
- size: full
|
||||
widgets:
|
||||
- type: hacker-news
|
||||
|
||||
- type: videos
|
||||
channels:
|
||||
- UCR-DXc1voovS8nhAvccRZhg # Jeff Geerling
|
||||
- UCv6J_jJa8GJqFwQNgNrMuww # ServeTheHome
|
||||
- UCOk-gHyjcWZNj3Br4oxwh0A # Techno Tim
|
||||
|
||||
- type: reddit
|
||||
subreddit: selfhosted
|
||||
|
||||
- size: small
|
||||
widgets:
|
||||
- type: weather
|
||||
location: London, United Kingdom
|
||||
|
||||
- type: markets
|
||||
markets:
|
||||
- symbol: SPY
|
||||
name: S&P 500
|
||||
- symbol: BTC-USD
|
||||
name: Bitcoin
|
||||
- symbol: NVDA
|
||||
name: NVIDIA
|
||||
- symbol: AAPL
|
||||
name: Apple
|
||||
- symbol: MSFT
|
||||
name: Microsoft
|
||||
- symbol: GOOGL
|
||||
name: Google
|
||||
- symbol: AMD
|
||||
name: AMD
|
||||
- symbol: RDDT
|
||||
name: Reddit
|
Loading…
Reference in New Issue
Block a user