Torsten Curdt

Results 571 comments of Torsten Curdt

I tried it like this ``` {%- for post in collections.tech | featured(post.data.related) -%} {%- endfor -%} ``` but it seems like I don't get access to the frontmatter data...

Wow - thanks for the example project, @pdehaan Seems like I was already really really close. I am just still a little surprised about the `related` instead of `page.data.related` and...

What I found to be working is setting it in the frontmatter. `test-page.njk`: --- layout: layouts/test-next.njk header: page --- PAGE But this fails short as soon as you want to...

@Snugug While I am using nunjucks for now, this should be a general question and covered in the docs as such. Pushing data from the page into the header of...

Another work around that seems to work OKish is to pass the file names via frontmatter. So in the base layout I have: ``` {% for path in head %}...

@edwardhorsford thanks :) While I think I am fine with this approach (for now), I think it would be good somehow to mention this topic in the docs. Injecting values...

I guess the main problem is defining what is considered a system that is alive and well. As you already hinted, things that come to mind are: - http ping...

Another somewhat related thought: Is there a way to check the current SHA of the system yet? I see it [is mentioned](https://github.com/nlewo/comin/issues/9) for the prometheus metrics.

Ah, seems like the status page provides it `curl 127.0.0.1:4242/status`

> Regarding an autorollback feature, comin runs on the machine itself, it cannot run a connectivity checks by itself: it would need to rely on a external service which could...