Commit Graph

1170 Commits

Author SHA1 Message Date
TrueCharts Bot c7354d6bac
chore(deps): update renovatebot/github-action action to v34.146.1 (#7259) 2023-02-20 23:04:10 +02:00
TrueCharts Bot e422ecb025
chore(deps): update actions/github-script digest to 98814c5 (#7254) 2023-02-15 10:02:38 +02:00
TrueCharts Bot 3f1a64c991
chore(deps): update dawidd6/action-download-artifact action to v2.25.0 (#7219) 2023-02-14 12:31:55 +02:00
TrueCharts Bot 0e2f0e6ca1
chore(deps): update renovatebot/github-action action to v34.136.0 (#7087) 2023-02-14 12:31:38 +02:00
Kjeld Schouten-Lebbing 5d31385a70
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-10 10:44:48 +01:00
Kjeld Schouten-Lebbing dded9730cf
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-09 20:19:56 +01:00
Kjeld Schouten-Lebbing 79819d9501
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-09 15:42:36 +01:00
Kjeld Schouten-Lebbing 0e111d237d
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-09 14:00:28 +01:00
Dan Christensen 0d4e9d03b9
fix: Build links to Docker images for Chart.yaml (#6963)
* style: Split long lines, follow .editorconfig

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: Clarify why some sources are being excluded

The explanation is also meant to remind anyone that sees it that the
code could inadvertently remove a sources sequence entry that was
intentionally added, because it can not tell.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: Comment the image-to-URL code

Signed-off-by: Dan Christensen <opello@opello.org>

* refactor: Use case instead of if-ladder

This is a faithful move from the if-ladder to a case statement that
preserves the existing behavior, with optimization to follow.  The
behavior of the function before and after this change is the same.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: Remove dead code

No "container source" entry from description_list.md has a scheme.  The
values are parsed from the Dockerfiles and would not have one there
either.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: tccr.io image links

Parse the tccr.io prefix specifically instead of just checking for the
substring tccr which could result in a false positive.

The generated link was also going to point to a truecharts subdirectory
under mirror in the containers repository that does not exist.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: lscr.io image links

Parse the lscr.io prefix specifically instead of just checking for the
substring lscr which could result in a false positive.

The generated link would also return a 404 because the web interface
requires the image name to be passed in the query string.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: gcr.io image links

Parse the gcr.io prefix specifically instead of just checking for the
substring gcr which could result in a false positive.

Signed-off-by: Dan Christensen <opello@opello.org>

* feat: Do not add sources if no prefix is created

The intent of this code is to generate URLs to be included in
documentation to attribute inputs to the chart.  If a publicly
accessible URL can not be generated from the image name it makes sense
to not add anything and instead rely on a manual edit to the Chart.yaml.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: Disable azurecr.io image links

There does not seem to be a general purpose web index to the azurecr.io
hosted images.

Signed-off-by: Dan Christensen <opello@opello.org>

* feat: Disable mcr.microsoft.com image links

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: public.ecr.aws image links

Parse the public.ecr.aws prefix specifically instead of just checking
for the substring public.ecr.aws which could result in a false positive.

Signed-off-by: Dan Christensen <opello@opello.org>

* fix: Disable ocir.io image links

There does not seem to be a general purpose web index to the ocir.io
hosted images.

Signed-off-by: Dan Christensen <opello@opello.org>

* refactor: Add Docker Hub hosted image links

From the perspective of linking to image details on the Docker Hub web
interface, there are two types of images:

  1. Docker Official Images
  2. all of the other images, regardless of their trustworthiness

The Docker Official Images can be referenced several ways, either on the
command line when passed to docker pull, or in the FROM instruction of a
Dockerfile:

  * busybox
  * library/busybox
  * docker.io/busybox
  * docker.io/library/busybox

Furthermore, over the years there have been several domains used for the
official Docker Hub registry:

  * docker.io
  * index.docker.io
  * registry-1.docker.io
  * registry.hub.docker.com

The goal here is handling each possible case, which makes Docker Hub
images more complex than the handling for other registries.

It also makes the case block's '*' (default) case harder to find in the
sequence of glob expressions, but this is necessary to avoid repeating
the parsing or adding another helper function.

Reference:
https://github.com/docker/hub-feedback/issues/2113
https://github.com/docker/cli/issues/3793

Signed-off-by: Dan Christensen <opello@opello.org>

* feat: ghcr.io image links

Signed-off-by: Dan Christensen <opello@opello.org>

* feat: quay.io image links

Signed-off-by: Dan Christensen <opello@opello.org>

* feat: Do not generate likely-bad links

By assuming image names that are not handled by other cases are Docker
Hub images there is a risk of generating bad links.  Minimize this risk
by not generating a link if the image name for a Docker Hub link has two
slashes.  This is a case that should not happen and would likely mean an
unsupported registry is being used.

There is still a risk of an unsupported registry being treated as Docker
Hub and an invalid link being generated.  That case is if the domain and
image name is example.com/busybox where there is only one slash.

Signed-off-by: Dan Christensen <opello@opello.org>

* refactor: Sort cases

Sort the cases from longest to shortest prioritizing any case with a
suffix only glob over any case with a prefix glob.  The intention is to
avoid having a case that can not be reached.

The combined Docker Hub and default case is last.  It might make sense
to split the default case handling off but it does not seem to be a
problem right now.

Signed-off-by: Dan Christensen <opello@opello.org>

---------

Signed-off-by: Dan Christensen <opello@opello.org>
2023-02-09 13:08:53 +01:00
TrueCharts Bot d106354b20
chore(deps): update renovatebot/github-action action to v34.125.1 (#7014) 2023-02-08 09:26:41 +02:00
TrueCharts Bot 3cb889f0d6
chore(deps): pin dessant/lock-threads action to (#7015) 2023-02-08 09:26:25 +02:00
Kjeld Schouten-Lebbing 19ca7eb014
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-06 18:42:27 +01:00
Kjeld Schouten-Lebbing dddf4c258b
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-06 18:29:56 +01:00
TrueCharts Bot d21bd95e72
chore(deps): update renovatebot/github-action action to v34.124.3 (#6985) 2023-02-05 22:13:36 +02:00
TrueCharts Bot 148e93b07e
chore(deps): update renovatebot/github-action action to v34.124.1 (#6969) 2023-02-05 11:57:25 +02:00
TrueCharts Bot 1f1d5af088
chore(deps): update renovatebot/github-action action to v34.122.0 (#6962) 2023-02-04 12:38:24 +02:00
Kjeld Schouten-Lebbing e8b027bee6
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 22:35:58 +01:00
Kjeld Schouten-Lebbing 0eea98acc9
Create daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 22:20:48 +01:00
TrueCharts Bot f28b233436
chore(deps): pin dessant/lock-threads action to (#6952) 2023-02-03 23:18:37 +02:00
Kjeld Schouten-Lebbing 3dd4d64d5b
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 15:19:13 +01:00
Kjeld Schouten-Lebbing 1cca23fcba
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 15:16:29 +01:00
Kjeld Schouten-Lebbing 7c18db5eff
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 15:08:51 +01:00
Kjeld Schouten-Lebbing d42f6c94f5
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 15:02:17 +01:00
Kjeld Schouten-Lebbing 79ebef60f4
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 14:55:24 +01:00
Kjeld Schouten-Lebbing 7896e56df5
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 14:44:34 +01:00
Kjeld Schouten-Lebbing b5e395c597
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 14:14:17 +01:00
Kjeld Schouten-Lebbing e707bf17c4 Revert "Revert "Update daily.yaml""
This reverts commit 7cb1f60a18.
2023-02-03 14:04:57 +01:00
Kjeld Schouten-Lebbing 7cb1f60a18 Revert "Update daily.yaml"
This reverts commit 99dbf87bc5.
2023-02-03 14:00:04 +01:00
Kjeld Schouten-Lebbing 99dbf87bc5
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 13:59:30 +01:00
Kjeld Schouten-Lebbing dfb5320691
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 13:42:32 +01:00
Kjeld Schouten-Lebbing 3fdd23f5f8
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-03 12:21:10 +01:00
Kjeld Schouten-Lebbing 15536d4095
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 18:33:21 +01:00
Kjeld Schouten-Lebbing 8e6f9fa49d
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 18:30:45 +01:00
Kjeld Schouten-Lebbing c095243be6
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 18:26:30 +01:00
Kjeld Schouten-Lebbing 32ad91d075
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 18:25:54 +01:00
Kjeld Schouten-Lebbing 527ba39df1
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 18:18:54 +01:00
Dan Christensen b87f6893ad
fix(ci): Chart.yaml update bugs (#6808)
* fix(ci): Do not duplicate sources

Signed-off-by: Dan Christensen <opello@opello.org>

* fix(ci): Match chart against Markdown link text

More specifically match the chart to the container in the website's
description_list.md.  Since multiple charts contain the term "plex" and
not all of them are even Plex related, extraneous sources were being put
in the plex Chart.yaml.

Signed-off-by: Dan Christensen <opello@opello.org>

---------

Signed-off-by: Dan Christensen <opello@opello.org>
2023-02-01 09:03:45 +01:00
Kjeld Schouten-Lebbing 05adde2be9
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-02-01 00:01:50 +01:00
Kjeld Schouten-Lebbing a127aab095
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 23:55:14 +01:00
Kjeld Schouten-Lebbing b8ebdd5845
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 23:37:19 +01:00
Kjeld Schouten-Lebbing 891d197b86
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 22:29:59 +01:00
Stavros Kois e649085d24
Don't fail when there is no text in desclist
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-01-31 23:10:40 +02:00
Kjeld Schouten-Lebbing 9e002de8fc
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 21:04:29 +01:00
Kjeld Schouten-Lebbing c1487d5a57
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 20:59:37 +01:00
Kjeld Schouten-Lebbing c6c28d7853
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 20:59:12 +01:00
Kjeld Schouten-Lebbing 96bcd4ef57
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 20:57:52 +01:00
Kjeld Schouten-Lebbing 4f0f330345
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-31 20:53:40 +01:00
TrueCharts Bot 701bb49f92
chore(deps): update renovatebot/github-action action to v34.109.1 (#6605) 2023-01-30 22:23:23 +02:00
TrueCharts Bot 431a57869a
chore(deps): update renovatebot/github-action action to v34.108.4 (#6595) 2023-01-22 10:24:32 +02:00
TrueCharts Bot 7c6b480e1c
chore(deps): update renovatebot/github-action action to v34.108.2 (#6571) 2023-01-21 13:51:44 +02:00
TrueCharts Bot 91c0a318fa
chore(deps): update renovatebot/github-action action to v34.105.6 (#6543) 2023-01-19 22:09:12 +02:00
TrueCharts Bot e58992e6b5
chore(deps): update renovatebot/github-action action to v34.105.5 (#6526) 2023-01-19 10:40:03 +02:00
TrueCharts Bot 6643ae1e20
chore(deps): update renovatebot/github-action action to v34.105.3 (#6446) 2023-01-18 13:42:01 +02:00
Kjeld Schouten-Lebbing 2d97bc9b9b
feat(cert-manager): add Cert-Manager configuration App (#6378)
* feat(cert-manager): add Cert-Manager configuration App

* eof

* pre-commit cleanup

* add temp crds folder

* patch mistake

* restructure

* add route53 support

* add some fails

* fixes and add route53 to GUI

* end

* add experimental HTTP01 support

* fix bug

* add buypass acme to dropdown

* add akamai support

* add Digitalocean

* add rfc2136 support

* fix some issues and add self-signed issuer

* add metrics and fix selfsigned

* whoops

* Add CA certificate system

* whoops

* benc stuff

* actually load CA

* fix

* fix ca

* bool -> boolean

* also test CA

* wait for pod to be ready

* sleep more agressively on cert-Manger itself

* some more fixes

* whoops

* fix mistakes

* all waits test

* add cmctl

* increase scope for now and some fixes

* simplify

* dont wait on non-existing pods

* make it non-failing

* fix typo
2023-01-18 00:06:10 +01:00
TrueCharts Bot 91857fd6cf
chore(deps): update renovatebot/github-action action to v34.104.0 (#6431) 2023-01-18 00:26:39 +02:00
TrueCharts Bot 9c4c9e2a95
chore(deps): update renovatebot/github-action action to v34.102.8 (#6414) 2023-01-16 10:03:35 +02:00
TrueCharts Bot 64315d7b48
chore(deps): update container image ghcr.io/truecharts/devcontainer to v3.1.1 (#5568) 2023-01-15 19:38:51 +02:00
Kjeld Schouten-Lebbing 1153508c46
Update charts-test.yaml (#6391)
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-15 18:25:23 +01:00
TrueCharts Bot 1edb4079b8
chore(deps): update renovatebot/github-action action to v34.102.7 (#6389) 2023-01-15 18:59:16 +02:00
TrueCharts Bot 7a4689d0bf
chore(deps): update renovatebot/github-action action to v34.102.2 (#6377) 2023-01-14 23:45:01 +02:00
TrueCharts Bot ddd3fac17f
chore(deps): update renovatebot/github-action action to v34.102.1 (#6370) 2023-01-14 16:47:02 +02:00
TrueCharts Bot 2b18beff02
chore(deps): update actions/setup-python digest to d27e3f3 (#6266) 2023-01-14 12:45:10 +02:00
TrueCharts Bot 4dace04061
chore(deps): update renovatebot/github-action action to v34.102.0 (#6262) 2023-01-14 12:24:20 +02:00
TrueCharts Bot 244081cd73
chore(deps): update renovatebot/github-action action to v34.97.5 (#6250) 2023-01-11 09:39:14 +02:00
Kjeld Schouten-Lebbing 396e47bb52
Update charts-lint.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-09 17:28:10 +01:00
Kjeld Schouten-Lebbing 26977b80ce
Update charts-test.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-09 17:20:37 +01:00
Kjeld Schouten-Lebbing 52cb34fd46
Update charts-test.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-09 16:44:38 +01:00
Kjeld Schouten-Lebbing 4e8e4f71ac
Update charts-test.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2023-01-09 14:53:34 +01:00
TrueCharts Bot 5cf29bb1dc
chore(deps): update renovatebot/github-action action to v34.94.0 (#6162) 2023-01-08 19:41:41 +02:00
TrueCharts Bot 662aef3de3
chore(deps): update renovatebot/github-action action to v34.93.0 (#6157) 2023-01-08 15:19:44 +02:00
TrueCharts Bot f38039ec21
chore(deps): update renovatebot/github-action action to v34.92.1 (#6153) 2023-01-08 00:50:38 +02:00
TrueCharts Bot 48f211d9de
chore(deps): update actions/checkout action to v3.3.0 (#6122) 2023-01-07 19:43:40 +02:00
TrueCharts Bot 99a194f4ce
chore(deps): update helm/chart-releaser-action action to v1.5.0 (#6133) 2023-01-07 19:43:15 +02:00
TrueCharts Bot fa997772ca
chore(deps): update renovatebot/github-action action to v34.92.0 (#6134) 2023-01-07 19:42:53 +02:00
TrueCharts Bot e2d98b1d74
chore(deps): update dawidd6/action-download-artifact action to v2.24.3 (#6120) 2023-01-07 19:32:53 +02:00
TrueCharts Bot c8629182db
chore(deps): update actions/upload-artifact digest to 0b7f8ab (#6007) 2023-01-07 17:29:56 +02:00
TrueCharts Bot 296995ae90
chore(deps): update actions/checkout digest to ac59398 (#6006) 2023-01-07 17:29:51 +02:00
TrueCharts Bot 89412e1396
chore(deps): update renovatebot/github-action action to v34.83.1 (#5992) 2023-01-05 10:02:32 +02:00
TrueCharts Bot f0d845f2b3
chore(deps): update renovatebot/github-action action to v34.77.1 (#5924) 2023-01-01 18:56:33 +02:00
TrueCharts Bot 2488791ca7
chore(deps): update renovatebot/github-action action to v34.77.0 (#5916) 2022-12-31 15:51:47 +02:00
TrueCharts Bot a0f51910de
chore(deps): update renovatebot/github-action action to v34.76.2 (#5905) 2022-12-31 10:51:58 +02:00
TrueCharts Bot 8a496ea924
chore(deps): update renovatebot/github-action action to v34.76.0 (#5881) 2022-12-30 10:15:17 +02:00
TrueCharts Bot 9ae8756a78
chore(deps): update renovatebot/github-action action to v34.74.2 (#5860) 2022-12-28 10:50:11 +02:00
Kjeld Schouten-Lebbing 6c2430bd32
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-27 21:06:25 +01:00
TrueCharts Bot 87bbe2e117
chore(deps): update renovatebot/github-action action to v34.74.0 (#5849) 2022-12-27 07:18:50 +02:00
Kjeld Schouten-Lebbing 5215f356f8
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 22:53:07 +01:00
Kjeld Schouten-Lebbing e447f5233f
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 22:24:39 +01:00
Kjeld Schouten-Lebbing 89800a439d
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 22:10:21 +01:00
Kjeld Schouten-Lebbing d58c9fe3cd
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 22:03:55 +01:00
Kjeld Schouten-Lebbing a8900e9b64
Delete general.security-scan.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 20:47:01 +01:00
Kjeld Schouten-Lebbing 0cbd67257a
Delete secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 20:46:47 +01:00
Kjeld Schouten-Lebbing a428dd454b
Update daily.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-26 20:46:36 +01:00
TrueCharts Bot 948fd51141
chore(deps): update renovatebot/github-action action to v34.73.3 (#5840) 2022-12-26 18:51:40 +02:00
Kjeld Schouten-Lebbing df06e2b3c7 Revert "Update secgen.yaml"
This reverts commit f9abc09420. (+1 squashed commits)

Squashed commits:

[1d6259e92f] Revert "Update secgen.yaml"

This reverts commit b883601cff.
2022-12-25 14:36:16 +01:00
TrueCharts Bot 93be9d1ccd
chore(deps): update renovatebot/github-action action to v34.73.1 (#5781) 2022-12-25 12:26:08 +00:00
Kjeld Schouten-Lebbing b883601cff
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-25 12:18:16 +01:00
Kjeld Schouten-Lebbing f9abc09420
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-25 12:17:36 +01:00
TrueCharts Bot e71b1cb5dc
chore(deps): update renovatebot/github-action action to v34.73.0 (#5690) 2022-12-25 01:44:30 +02:00
TrueCharts-Admin ee30607c9f Update stefanzweifel/git-auto-commit-action digest to 3ea6ae1 2022-12-24 23:05:50 +01:00
Kjeld Schouten-Lebbing 31aa1404f6 Revert "Update secgen.yaml"
This reverts commit f78df3cf27. (+1 squashed commits)

Squashed commits:

[62adfc99ea] Revert "Update secgen.yaml"

This reverts commit b08805f37b.
2022-12-24 20:29:33 +01:00
Kjeld Schouten-Lebbing b08805f37b
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 20:23:41 +01:00
Kjeld Schouten-Lebbing f78df3cf27
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 20:15:22 +01:00
TrueCharts Bot fb9815caf8
chore(deps): update renovatebot/github-action action to v34.72.3 (#5681) 2022-12-24 19:42:19 +02:00
Kjeld Schouten-Lebbing c039e057bd
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 17:46:25 +01:00
Kjeld Schouten-Lebbing addf81d4d7
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 17:46:01 +01:00
Kjeld Schouten-Lebbing 7d71cbe1f6
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 17:40:48 +01:00
Kjeld Schouten-Lebbing 8737d5ff2b
Update secgen.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-24 10:15:35 +01:00
TrueCharts Bot c50023fb68
chore(deps): update renovatebot/github-action action to v34.72.2 (#5642) 2022-12-24 09:37:16 +02:00
Kjeld Schouten-Lebbing 01f696b753 fix(docs): limit scope of container scans to "vuln". 2022-12-23 21:18:59 +01:00
Kjeld Schouten-Lebbing 10810c5b94 ensure tested container entries are unique 2022-12-23 20:41:16 +01:00
Kjeld Schouten-Lebbing 1991028d2b fix(docs): ensure all helm chart portions are scanned during security scan 2022-12-23 20:00:19 +01:00
Kjeld Schouten-Lebbing e1756d34aa fix(docs): prevent too-early failure of security check script 2022-12-23 18:35:19 +01:00
Kjeld Schouten-Lebbing 316f5a1fc0 fix(docs): correct container scan filename 2022-12-23 17:22:12 +01:00
Kjeld Schouten-Lebbing 7e005f58ab feat(docs): re-enable container security scanning 2022-12-23 17:16:09 +01:00
Kjeld Schouten-Lebbing 4536b6a821 fix(docs): ensure titles on security scan pages are set correctly 2022-12-23 12:10:57 +01:00
Kjeld Schouten-Lebbing 304edb8ee8 fix(docs): ensure the render folder is deleted 2022-12-23 11:58:16 +01:00
Kjeld Schouten-Lebbing 2d2cfcd9a4 fix(docs): ignore container security scan for now 2022-12-23 11:14:23 +01:00
Kjeld Schouten-Lebbing e6b8e1a693 fix(docs): fix typo in security generator 2022-12-23 11:00:16 +01:00
Kjeld Schouten-Lebbing 5a3a06f333 fix(docs): ensure no unclosed br and hr tags are used in security report 2022-12-23 10:53:23 +01:00
Kjeld Schouten-Lebbing 57a02c6ae4 fix(docs): actually wrote security scan results to website 2022-12-22 22:56:03 +01:00
Kjeld Schouten-Lebbing 7f2b2d4ace fix(docs): fixing completely wrong syntaxsis 2022-12-22 21:57:25 +01:00
Kjeld Schouten-Lebbing 964e37be60 fix(docs): ensure being unable to generate security info, doesn't lead to not-generating it at-all 2022-12-22 21:46:24 +01:00
Kjeld Schouten-Lebbing 7c1754f254 fix tpl path for sec scan 2022-12-22 20:56:53 +01:00
Kjeld Schouten-Lebbing ee77cc0a61 remove unneeded check from sec script 2022-12-22 20:46:21 +01:00
Kjeld Schouten-Lebbing cc2c230ba7 another attempt at fixing the damn script 2022-12-22 20:40:32 +01:00
Kjeld Schouten-Lebbing 3303b436aa another try at fixing the script 2022-12-22 20:29:33 +01:00
Kjeld Schouten-Lebbing 07b98df96c copy other logic 2022-12-22 20:19:26 +01:00
Kjeld Schouten-Lebbing d11a287e9e use other way to for 2022-12-22 20:13:11 +01:00
Kjeld Schouten-Lebbing 46c5d7e72d layout tweaks 2022-12-22 20:04:57 +01:00
Kjeld Schouten-Lebbing a282b10e6a ensure dependencies are fetched 2022-12-22 20:02:52 +01:00
Kjeld Schouten-Lebbing 01a397ccb0 ensure deps are fetched prior to sec scan 2022-12-22 19:53:07 +01:00
Kjeld Schouten-Lebbing e65c77b756 fix issues with new action 2022-12-22 19:41:59 +01:00
Kjeld Schouten-Lebbing 85f4a037be feat(docs): add initial job to generate security reports for Apps 2022-12-22 19:34:48 +01:00
TrueCharts Bot f920121c2c
chore(deps): update actions/setup-python digest to 5ccb29d (#5626) 2022-12-22 20:15:59 +02:00
TrueCharts Bot 32ed1acb43
chore(deps): update renovatebot/github-action action to v34.70.1 (#5628) 2022-12-22 20:15:52 +02:00
Kjeld Schouten-Lebbing 1cb8e18489
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-22 17:19:31 +01:00
TrueCharts Bot 84bdd4a60a
chore(deps): update renovatebot/github-action action to v34.70.0 (#5557) 2022-12-22 01:03:44 +02:00
TrueCharts Bot 93875df67b
chore(deps): update tj-actions/branch-names action to v6.4 (#5558) 2022-12-22 01:03:35 +02:00
Stavros Kois 6335f8df2b
Update charts-release.yaml
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-12-22 00:58:16 +02:00
Kjeld Schouten-Lebbing 06f98c4d38 fix BAD mistake in docs 2022-12-21 23:23:57 +01:00
Kjeld Schouten-Lebbing 843132d21e fix(docs): use correct caps/names 2022-12-21 23:18:11 +01:00
Kjeld Schouten-Lebbing 3f4e7219dc fix(docs): ensure headers on container and helm security pages is correct and fix generation error 2022-12-21 23:13:59 +01:00
Kjeld Schouten-Lebbing 7330374545 fix(docs): show content as dotted list in docs 2022-12-21 23:05:13 +01:00
Kjeld Schouten-Lebbing c59c7cbe16 fix(docs): fix a few typo's 2022-12-21 23:03:18 +01:00
Kjeld Schouten-Lebbing 9694b2216e feat(docs): add back initial handles for container and helm securityscans 2022-12-21 22:55:18 +01:00
Kjeld Schouten-Lebbing 58dd0568e9 feat(docs): reintroduce doc-index fancy buttons/shields 2022-12-21 22:44:24 +01:00
Kjeld Schouten-Lebbing 0fcecdf1d1
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-19 23:21:23 +01:00
Kjeld Schouten-Lebbing e0f7daa0db
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-19 23:20:06 +01:00
Kjeld Schouten-Lebbing 5eb14a4075
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-19 23:19:25 +01:00
Stavros Kois 9c11c22a1b
fix links 2022-12-20 00:17:39 +02:00
Stavros Kois 60b218bc6e
drop /docs/ from home link 2022-12-20 00:13:08 +02:00
Stavros Kois 611e690a4a
make sure changelog exists earlier 2022-12-18 22:39:57 +02:00
Stavros Kois e3ac7bb734
only parse md files 2022-12-18 22:29:53 +02:00
TrueCharts Bot 9c6d73fb5e
chore(deps): update renovatebot/github-action action to v34.63.1 (#5538) 2022-12-18 15:48:24 +02:00
TrueCharts Bot 9fda0d4522
chore(deps): update renovatebot/github-action action to v34.63.0 (#5511) 2022-12-18 13:53:45 +02:00
TrueCharts Bot 9dd0fa39cf
chore(deps): update renovatebot/github-action action to v34.62.1 (#5476) 2022-12-18 01:51:35 +02:00
Kjeld Schouten-Lebbing c537410ae6
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-17 22:55:57 +01:00
Kjeld Schouten-Lebbing 1c20a2ee63
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-17 21:28:43 +01:00
Kjeld Schouten-Lebbing 242007e59a
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-17 21:17:45 +01:00
Kjeld Schouten-Lebbing 110de5ffb6
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-17 21:07:43 +01:00
Kjeld Schouten-Lebbing 4cf858c2ef
feat(ci): add App description and docs-list to index
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-12-17 21:03:55 +01:00
TrueCharts Bot 3399ecf874
chore(deps): update renovatebot/github-action action to v34.60.0 (#5448) 2022-12-17 10:21:34 +02:00
TrueCharts Bot 7ef6902de0
chore(deps): update renovatebot/github-action action to v34.59.0 (#5436) 2022-12-16 20:22:12 +02:00
TrueCharts Bot 8dbf9896a5
chore(deps): update renovatebot/github-action action to v34.58.1 (#5432) 2022-12-16 13:53:09 +02:00
TrueCharts Bot 8cdbf3bb2f
chore(deps): update renovatebot/github-action action to v34.58.0 (#5425) 2022-12-16 09:56:19 +02:00
TrueCharts Bot a3d4896199
chore(deps): update renovatebot/github-action action to v34.56.3 (#5414) 2022-12-15 19:06:40 +02:00
TrueCharts Bot a1d98c510c
chore(deps): update renovatebot/github-action action to v34.56.0 (#5407) 2022-12-15 09:11:52 +02:00
TrueCharts Bot 83db9e142c
chore(deps): update github/codeql-action digest to 959cbb7 (#5402) 2022-12-14 17:06:09 +02:00
TrueCharts Bot 809d4d245a
chore(deps): update actions/checkout digest to 755da8c (#5381) 2022-12-13 17:30:19 +02:00
TrueCharts Bot 47938848ef
Update actions/checkout action to v3.2.0 (#5364)
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-12-13 09:56:27 +02:00
TrueCharts Bot fd44968279
Update renovatebot/github-action action to v34.55.0 (#5370) 2022-12-13 09:01:53 +02:00
TrueCharts Bot 478aadce38
Update actions/checkout digest to 7dd9e2a (#5371) 2022-12-13 01:01:40 +02:00
TrueCharts Bot 888722bc53
chore(deps): update renovatebot/github-action action to v34.54.2 (#5276) 2022-12-12 16:32:04 +02:00
TrueCharts Bot e65fdba95e
chore(deps): update renovatebot/github-action action to v34.54.1 (#5269) 2022-12-11 12:09:43 +02:00
TrueCharts Bot aed5a80b97
Update renovatebot/github-action action to v34.54.0 (#5233) 2022-12-10 17:58:22 +02:00
TrueCharts Bot 83d0fbbc68
chore(deps): update github/codeql-action digest to a669cc5 (#5217) 2022-12-09 00:59:33 +02:00
TrueCharts Bot 26b53b1074
chore(deps): update renovatebot/github-action action to v34.52.0 (#5220) 2022-12-09 00:58:54 +02:00
TrueCharts Bot f1628a4c05
Update actions/setup-python digest to 2c3dd9e (#5213) 2022-12-08 16:45:59 +02:00
TrueCharts Bot 066ee4de95
chore(deps): update renovatebot/github-action action to v34.51.0 (#5198) 2022-12-08 10:06:01 +02:00
TrueCharts Bot cc29e6b98e
Update renovatebot/github-action action to v34.50.1 (#5181) 2022-12-07 09:06:38 +02:00
TrueCharts Bot f4c634ce8c
chore(deps): update renovatebot/github-action action to v34.49.1 (#5159) 2022-12-06 19:19:05 +02:00
TrueCharts Bot 2a64d66913
chore(deps): update renovatebot/github-action action to v34.49.0 (#5148) 2022-12-06 11:06:40 +02:00
TrueCharts Bot 2647c2e244
Update renovatebot/github-action action to v34.48.4 (#5129) 2022-12-05 10:42:52 +02:00
TrueCharts Bot e66483ee3e
Update renovatebot/github-action action to v34.48.3 (#5118) 2022-12-04 18:36:54 +02:00
TrueCharts Bot 78fc47ffa1
Update renovatebot/github-action action to v34.48.0 (#5075) 2022-12-04 11:42:53 +02:00
TrueCharts Bot 11c3522f60
chore(deps): update renovatebot/github-action action to v34.44.0 (#5060) 2022-12-02 00:14:42 +02:00
TrueCharts Bot 93369e714b
chore(deps): update github/codeql-action digest to b2a92eb (#5054) 2022-12-02 00:14:37 +02:00
Stavros Kois 69132909fc
fix(ci): no need to `cd -` (#5058) 2022-12-01 15:44:01 +02:00
Stavros Kois 8fad94afb5
fix(ci): don't delete website repo too early (#5051) 2022-12-01 12:56:51 +01:00
TrueCharts Bot 8bb0184679
Update renovatebot/github-action action to v34.42.0 (#5021)
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-11-30 21:30:52 +02:00
TrueCharts Bot 1d324490bb
Update ghcr.io/truecharts/devcontainer:v3.1.1 Docker digest to f0ecaa5 (#5008) 2022-11-30 21:28:27 +02:00
TrueCharts Bot 81847e5c88
Update renovatebot/github-action action to v34.41.1 (#4998) 2022-11-30 21:00:36 +02:00
TrueCharts Bot 32bd316ce6
chore(deps): update renovatebot/github-action action to v34.40.2 (#4930) 2022-11-29 01:35:27 +02:00
TrueCharts Bot 1754837f08
Update renovatebot/github-action action to v34.40.0 (#4856) 2022-11-27 23:40:37 +02:00
TrueCharts Bot bbd9d13bd8
chore(deps): update renovatebot/github-action action to v34.34.0 (#4826) 2022-11-25 18:38:19 +02:00
TrueCharts Bot 25f7f615e3
chore(deps): update github/codeql-action digest to 312e093 (#4837) 2022-11-25 18:38:10 +02:00
Stavros Kois 5f988614f5
Update renovate-bump.yaml
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-11-24 19:42:06 +02:00
Stavros Kois 3889283a23
add safe dir 2022-11-24 12:38:48 +02:00
Stavros Kois 8fcbcc3be0
set workspace as a safe dir 2022-11-24 12:26:33 +02:00
Stavros Kois cb6a6575c5
update devcontainer 2022-11-24 12:04:25 +02:00
TrueCharts Bot fb7733d958
Update renovatebot/github-action action to v34.32.0 (#4778) 2022-11-23 22:59:04 +02:00
TrueCharts Bot a7ee197397
chore(deps): update renovatebot/github-action action to v34.30.2 (#4751) 2022-11-22 22:12:59 +02:00
TrueCharts Bot 31233a6f81
Update renovatebot/github-action action to v34.30.0 (#4706) 2022-11-22 09:04:49 +02:00
TrueCharts Bot 1936125ce9
chore(deps): update renovatebot/github-action action to v34.29.2 (#4657) 2022-11-22 00:52:54 +02:00
Kjeld Schouten-Lebbing 28eabd3673
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-21 10:15:56 +01:00
Kjeld Schouten-Lebbing 1c9a3052a2
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-20 20:49:10 +01:00
Kjeld Schouten-Lebbing afb4d1825d
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-20 20:45:32 +01:00
Kjeld Schouten-Lebbing a780450e13
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-20 20:21:17 +01:00
TrueCharts Bot fe19253e04
Update renovatebot/github-action action to v34.28.0 (#4604) 2022-11-19 10:28:13 +02:00
TrueCharts Bot 4f0214f93a
Update renovatebot/github-action action to v34.27.3 (#4583) 2022-11-18 16:29:42 +02:00
TrueCharts Bot 5d3dd6c3e7
chore(deps): update endbug/label-sync digest to da00f2c (#4458) 2022-11-18 00:46:40 +02:00
TrueCharts Bot 5375e804bc
chore(deps): update renovatebot/github-action action to v34.27.1 (#4468) 2022-11-18 00:46:34 +02:00
TrueCharts Bot 1234fe50cd
Update github/codeql-action digest to 678fc3a (#4515) 2022-11-18 00:40:40 +02:00
Kjeld Schouten-Lebbing 7fe0fbc7b3
Update renovate.yml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-16 13:39:14 +01:00
Kjeld Schouten-Lebbing 04f3a7a593
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-15 14:29:27 +01:00
Kjeld Schouten-Lebbing 7fc2bde812
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-15 11:36:31 +01:00
Kjeld Schouten-Lebbing 33dedbe10b
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-15 11:35:36 +01:00
TrueCharts Bot e346b88c8e
Update actions/checkout digest to 93ea575 (#4432) 2022-11-15 10:37:58 +02:00
TrueCharts Bot fa6d027e42
chore(deps): pin actions/checkout action to 93ea575 (#4422) 2022-11-15 10:37:42 +02:00
Kjeld Schouten-Lebbing e25c977d6f
Update pr-validate.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-14 22:30:05 +01:00
TrueCharts-Admin 8c9b014514 chore(deps): update github/codeql-action digest to 4238421 2022-11-14 21:41:15 +01:00
TrueCharts Bot 006b5d76bf
chore(deps): update renovatebot/github-action action to v34.24.0 (#4405) 2022-11-13 23:25:11 +02:00
TrueCharts Bot 96d7745f22
chore(deps): update tj-actions/branch-names action to v6.3 (#4399) 2022-11-13 02:32:49 +02:00
TrueCharts-Admin ef8917bf66 chore(deps): update renovatebot/github-action action to v34.23.1 2022-11-12 18:28:03 +01:00
Stavros Kois dcc7fe5ed3
chore(ci): fix cp path (#4387)
* chore(ci): fix a visual typo

* fix copy..

* its train/chart :D
2022-11-12 16:58:44 +01:00
Kjeld Schouten-Lebbing bf2710da61
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-12 16:17:43 +01:00
Kjeld Schouten-Lebbing c719b7edc9
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-12 16:12:20 +01:00
Kjeld Schouten-Lebbing d90b8bc12a
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-12 16:04:04 +01:00
TrueCharts-Admin 23f847aaee chore(deps): update renovatebot/github-action action to v34.23.0 2022-11-12 13:18:13 +01:00
TrueCharts-Admin f84e369b90 chore(deps): update renovatebot/github-action action to v34.22.2 2022-11-12 01:25:07 +01:00
Kjeld Schouten-Lebbing 7703586ba7
Update renovate-bump.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 23:19:57 +01:00
Kjeld Schouten-Lebbing 6852b05704
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 20:01:23 +01:00
Kjeld Schouten-Lebbing 6599657622
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 19:51:04 +01:00
Kjeld Schouten-Lebbing bc9290752b
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 19:31:36 +01:00
Kjeld Schouten-Lebbing c308decef2
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 19:30:43 +01:00
Kjeld Schouten-Lebbing 31f43f1525
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 19:29:50 +01:00
Kjeld Schouten-Lebbing 96311b5494
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-11 19:28:45 +01:00
TrueCharts-Admin 504ac36159 chore(deps): update renovatebot/github-action action to v34.22.1 2022-11-11 13:17:37 +01:00
Kjeld Schouten-Lebbing bf17fd5e36
fix(ci): use correct shell for docker update sync/bump 2022-11-11 10:22:11 +01:00
Kjeld Schouten-Lebbing 8ff1978932
fix(ci): run renovate bump code on devcontainer 2022-11-11 10:05:17 +01:00
Kjeld Schouten-Lebbing 14fb5fb024
fix(ci): fix mv -rf mistake 2022-11-10 22:44:16 +01:00
Kjeld Schouten-Lebbing c9d3b37a16
fix(ci): fix mistake wiping changlogs 2022-11-10 21:44:54 +01:00
Kjeld Schouten-Lebbing 82046b4021
fix(ci): prevent changelog mistakes 2022-11-10 20:59:21 +01:00
Kjeld Schouten-Lebbing ff654486b3
feat(ci): move changelog directly to website (#4370)
* feat(ci): move changelog directly to website

* Put part of website changelog into SCALE App and add notice towards website

* Don't push back into repo and combine helm-release jobs

* force remove app-changelog
2022-11-10 20:39:03 +01:00
Kjeld Schouten-Lebbing 5864fce3ac
WIP Cleanup configuration options (#4365)
* chore(apps): remove un-needed UI elements

* dont grab metallb upstreams anymore

* add new readme template pointing to the website and remove helm-values system

* Move readme generation to daily job

* remove readme addition and remve readme generation from build-release script

* bump

* remvoe the use of helm-docs

* completely remove helm-docs

* move tag sync to renovate bump action

* fully remove tag sync and remove needless helm dependency updates

* remove needless helm prep

* get rid of needlessly loaded grafana repo
2022-11-10 16:46:44 +01:00
Kjeld Schouten-Lebbing f7010b138f
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-10 10:23:06 +01:00
Kjeld Schouten-Lebbing 8e5de4f9d4
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-10 10:06:50 +01:00
TrueCharts-Admin 6ef6df4124 chore(deps): update renovatebot/github-action action to v34.21.4 2022-11-10 07:15:11 +01:00
TrueCharts-Admin 9f771d7474 chore(deps): update dawidd6/action-download-artifact action to v2.24.2 2022-11-10 01:24:54 +01:00
TrueCharts Bot 8c166ff05d
chore(deps): update renovatebot/github-action action to v34.21.2 (#4357) 2022-11-09 10:28:18 +02:00
TrueCharts Bot 1ecc58ac81
chore(deps): update dawidd6/action-download-artifact action to v2.24.1 (#4356) 2022-11-09 09:42:49 +02:00
TrueCharts-Admin d956577ea9 chore(deps): update renovatebot/github-action action to v34.20.4 2022-11-08 22:46:46 +01:00
TrueCharts-Admin ee46eeea05 chore(deps): update renovatebot/github-action action to v34.20.0 2022-11-07 13:18:38 +01:00
TrueCharts Bot c86ebc7eff
chore(deps): update renovatebot/github-action action to v34.19.3 (#4328) 2022-11-06 23:42:01 +02:00
Kjeld Schouten-Lebbing 32811e675f
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-06 21:10:25 +01:00
Kjeld Schouten-Lebbing 98a7b79a8e
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-06 20:58:02 +01:00
Kjeld Schouten-Lebbing 8b24f080f4
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-06 20:49:14 +01:00
Kjeld Schouten-Lebbing 73bdbbfdc3
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-06 20:41:17 +01:00
Kjeld Schouten-Lebbing 09dd2cd7cb
Revert "chore(deps): update ghcr.io/truecharts/devcontainer:v2.6.0 docker digest to 479b7ce (#4133)" (#4323)
This reverts commit 99fd827b2c.
2022-11-06 20:21:06 +01:00
TrueCharts Bot 99fd827b2c
chore(deps): update ghcr.io/truecharts/devcontainer:v2.6.0 docker digest to 479b7ce (#4133) 2022-11-06 20:11:11 +01:00
Kjeld Schouten-Lebbing 2edc8498e2
Update charts-changelog.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-05 18:57:14 +01:00
Kjeld Schouten-Lebbing ff35ab2402
Update charts-release.yaml
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
2022-11-05 18:55:36 +01:00
TrueCharts-Admin a2f7d36ce0 chore(deps): update renovatebot/github-action action to v34.19.0 2022-11-05 14:27:09 +01:00
TrueCharts-Admin 5b7c8aa205 chore(deps): update stefanzweifel/git-auto-commit-action digest to 0b007fb 2022-11-05 14:26:02 +01:00
TrueCharts Bot 116212afba
chore(deps): update renovatebot/github-action action to v34.18.0 (#4302) 2022-11-05 13:48:19 +02:00
TrueCharts-Admin 81b92fd001 chore(deps): update github/codeql-action digest to c3b6fce 2022-11-05 07:16:15 +01:00
TrueCharts Bot d6a0dcae84
chore(deps): update renovatebot/github-action action to v34.17.1 (#4295) 2022-11-04 09:21:09 +02:00
TrueCharts Bot adc8c19f44
chore(deps): update yokawasa/action-setup-kube-tools action to v0.9.2 (#4290) 2022-11-03 10:43:41 +02:00
TrueCharts Bot f0b671eae2
chore(deps): update renovatebot/github-action action to v34.13.2 (#4287) 2022-11-03 02:42:22 +02:00
TrueCharts Bot 8e7eeed6a9
chore(deps): update github/codeql-action digest to 18fe527 (#4284) 2022-11-03 00:30:52 +02:00
TrueCharts Bot c4aac35d73
chore(deps): update renovatebot/github-action action to v34.12.1 (#4281) 2022-11-02 10:29:38 +02:00
TrueCharts Bot aa5c5aac7f
chore(deps): update renovatebot/github-action action to v34.12.0 (#4274) 2022-11-02 02:24:20 +02:00
TrueCharts-Admin 8cf5e3f5f5 chore(deps): update renovatebot/github-action action to v34.10.0 2022-11-01 01:30:20 +01:00
TrueCharts-Admin 1a97403829 chore(deps): update renovatebot/github-action action to v34.9.1 2022-10-30 07:15:47 +01:00
TrueCharts-Admin 1b7499b8bb chore(deps): update yokawasa/action-setup-kube-tools action to v0.9.1 2022-10-29 14:16:42 +02:00
TrueCharts-Admin c0660a9ed0 chore(deps): update renovatebot/github-action action to v34.6.0 2022-10-28 08:18:12 +02:00
TrueCharts-Admin 4dced133b0 chore(deps): update renovatebot/github-action action to v34.4.0 2022-10-28 02:28:52 +02:00
TrueCharts-Admin f6030008fe chore(deps): update renovatebot/github-action action to v34.2.0 2022-10-27 14:18:13 +02:00
TrueCharts-Admin 56a64909ee chore(deps): update github/codeql-action digest to ec3cf9c 2022-10-27 02:28:01 +02:00
TrueCharts-Admin 8a2c5190db chore(deps): update renovatebot/github-action action to v34 2022-10-26 14:18:40 +02:00
TrueCharts-Admin f09592c7ce chore(deps): update yokawasa/action-setup-kube-tools action to v0.9.0 2022-10-26 08:14:19 +02:00
TrueCharts-Admin 69eebd836f chore(deps): update renovatebot/github-action action to v33.2.4 2022-10-26 02:25:22 +02:00
TrueCharts-Admin 8bf225aa29 chore(deps): update renovatebot/github-action action to v33.2.0 2022-10-25 02:34:32 +02:00
TrueCharts-Admin 2acaa98c18 chore(deps): update yokawasa/action-setup-kube-tools action to v0.8.3 2022-10-25 02:33:21 +02:00
TrueCharts-Admin 97c5f3f75c chore(deps): update renovatebot/github-action action to v33 2022-10-24 14:18:09 +02:00
Stavros Kois 6438306896
Update charts-release.yaml
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-10-24 09:42:12 +03:00
Stavros Kois dd18c39b75
Update charts-changelog.yaml
Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2022-10-24 09:42:03 +03:00
TrueCharts-Admin df76266f81 chore(deps): update renovatebot/github-action action to v32.241.11 2022-10-24 02:33:01 +02:00
TrueCharts-Admin cc52a3c533 chore(deps): update renovatebot/github-action action to v32.241.10 2022-10-23 08:23:53 +02:00
TrueCharts-Admin 058a19cae9 chore(deps): update stefanzweifel/git-auto-commit-action digest to 2fde6fc 2022-10-22 20:15:58 +02:00
TrueCharts Bot bea152b6a0
chore(deps): update renovatebot/github-action action to v32.241.8 (#4157) 2022-10-22 13:01:10 +03:00
TrueCharts-Admin d5572fde21 chore(deps): update actions/upload-artifact digest to 83fd05a 2022-10-22 08:21:22 +02:00
TrueCharts-Admin 84ff17efe8 chore(deps): update renovatebot/github-action action to v32.241.7 2022-10-22 02:29:21 +02:00
TrueCharts Bot ed2e16bcdd
chore(deps): update renovatebot/github-action action to v32.241.5 (#4145) 2022-10-21 10:29:11 +03:00
TrueCharts-Admin 7855d33f8f chore(deps): update renovatebot/github-action action to v32.240.5 2022-10-20 02:32:54 +02:00
TrueCharts-Admin fe0a553d9c chore(deps): update renovatebot/github-action action to v32.240.4 2022-10-19 08:40:16 +02:00
TrueCharts Bot a373f825b1
chore(deps): update github/codeql-action digest to cc7986c (#4125) 2022-10-18 22:10:10 +03:00
TrueCharts-Admin ae42a7ad6a chore(deps): update renovatebot/github-action action to v32.240.2 2022-10-18 14:18:28 +02:00
TrueCharts Bot b2a6650c7f
chore(deps): update endbug/label-sync digest to 3478705 (#4121) 2022-10-18 08:41:37 +03:00
TrueCharts Bot b62845caf1
chore(deps): update renovatebot/github-action action to v32.238.4 (#4111) 2022-10-16 17:48:43 +03:00