lyoko

joined 1 year ago
[–] lyoko@lemm.ee 5 points 4 months ago* (last edited 4 months ago) (9 children)

Never thought about it. Is there an inside joke am i missing @@

[–] lyoko@lemm.ee 2 points 9 months ago

In my experience, I found that rclone mount a crypt remote is not as stable as a direct mount. But I will try to do it again. Thank you very much !

[–] lyoko@lemm.ee 8 points 1 year ago (1 children)

How do you keep your Spotify recommendations update ? Don't you have to listen to songs on it to get updated recommendations ?

[–] lyoko@lemm.ee 1 points 1 year ago

That sounds like what I need. Thank you very much !

[–] lyoko@lemm.ee 1 points 1 year ago (2 children)

I dont think Ansible is a general templating engine ? I do templating for all most everything and not only docker compose, for example this for traefik configuration.

[–] lyoko@lemm.ee 1 points 1 year ago

so you are also generating the docker-compose from code. I think I am looking for something that aware of both templating and docker-compose deployment because right now, at the end of the day, I am still have to run docker-compose up -f ... while helm can do both templating and deployment.

[–] lyoko@lemm.ee 3 points 1 year ago (1 children)

I actually need more than merging. For example, right now my traefik.template will look like this:

[http.routers.{{ router_name }}]
  rule = "{{ router_rule }}"
  service = "{{ service_name }}"
  middlewares = [{{ middlewares | map("tojson") | join(", ") }}]
{% block router %}{% endblock %}
  [http.routers.{{ router_name }}.tls]
    certResolver = "leresolver_http"

{% if service_host is defined %}
[[http.services.{{ service_name }}.loadBalancer.servers]]
  url = "{{ 'https' if service_use_https is defined else 'http' }}://{{ service_host }}{{ ':' ~ service_port if service_port is defined else '' }}"
{% endif %}

and then one of my traefik.toml could look like this

{% extends "template/traefik.jinja" %}

{% set router_name = "dozzle" %}
{% set router_rule = "Host(`dozzle.example.com`)" %}
{% set service_name = "dozzle" %}
{% set service_host = "dozzle" %}
{% set service_port = 8080 %}
[–] lyoko@lemm.ee 2 points 1 year ago (1 children)

you mean nix the package manager ?

[–] lyoko@lemm.ee 3 points 1 year ago (1 children)

I know about Helm but I don't need k8s features and my VPS is just too weak for k8s I think :/

[–] lyoko@lemm.ee 2 points 1 year ago

Yes you can. I add a window 11 iso to it as well

[–] lyoko@lemm.ee 13 points 1 year ago* (last edited 1 year ago) (4 children)

Not really for ventoy but have you heard about medicat ? I have bookmarked it for sometime now but never had a chance to try.

Edit: medicat also supports ventoy

view more: ‹ prev next ›