21 Commits

Author SHA1 Message Date
973d9396b6 fix
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-11 13:39:45 +01:00
6d54deb949 fix 2025-01-11 13:34:44 +01:00
b81bd47330 fix
All checks were successful
Markdown linter / markdown-link-checker (push) Successful in 28s
continuous-integration/drone/push Build is passing
2025-01-11 13:33:54 +01:00
c0ab5d6f61 asdasd
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 12s
continuous-integration/drone/push Build is passing
2025-01-11 13:32:59 +01:00
7b3bea4956 fix
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 6s
continuous-integration/drone/push Build is passing
2025-01-11 13:32:14 +01:00
220bb9cfef test
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 3s
continuous-integration/drone/push Build is passing
2025-01-11 13:30:48 +01:00
401d586d9f wip
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 10s
continuous-integration/drone/push Build is passing
2025-01-11 13:15:40 +01:00
86185afaff fix: container runtime
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 26s
continuous-integration/drone/push Build is passing
2025-01-11 13:10:56 +01:00
5dd2894d59 WIP
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 1m56s
continuous-integration/drone/push Build is passing
2025-01-11 13:07:06 +01:00
912277713e WIP
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 1m33s
continuous-integration/drone/push Build is passing
2025-01-11 12:59:30 +01:00
ba2a3606b9 WIP
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 31s
continuous-integration/drone/push Build is passing
2025-01-11 12:55:39 +01:00
22807e697c WIP
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 1m7s
continuous-integration/drone/push Build is passing
2025-01-11 12:42:11 +01:00
09b33d60b9 WIP
All checks were successful
Markdown linter / markdown-link-checker (push) Successful in 4s
continuous-integration/drone/push Build is passing
2025-01-11 12:40:39 +01:00
1e9f0d1fb5 wip
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 17s
continuous-integration/drone/push Build is passing
2025-01-11 12:37:50 +01:00
7442f9ae5a wip(ci): run gitea action
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-11 12:36:09 +01:00
4a4650cdc2 fix(Makefile): remove markdownlink-check target
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-04 22:28:02 +01:00
b73455b657 doc(values): add affinity example
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-01-04 21:54:50 +01:00
79062bc1c3 chore(deps): update docker.io/library/node docker tag to v23.5.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-12-20 17:23:19 +00:00
3b0a815203 chore(deps): update git.cryptic.systems/volker.raschek/helm docker tag to v3.16.4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-12-17 11:27:45 +00:00
ffa8271684 chore(deps): update docker.io/library/node docker tag to v23.4.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-12-10 20:23:17 +00:00
f59f6aa94d doc(README): update parameters
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2024-12-06 23:58:57 +01:00
5 changed files with 77 additions and 23 deletions

View File

@ -17,7 +17,7 @@ steps:
- name: helm lint
commands:
- helm lint
image: git.cryptic.systems/volker.raschek/helm:3.16.3
image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources:
limits:
cpu: 150
@ -69,7 +69,7 @@ steps:
- name: helm unittest
commands:
- helm unittest --strict --file 'unittests/**/*.yaml' ./
image: git.cryptic.systems/volker.raschek/helm:3.16.3
image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources:
limits:
cpu: 150
@ -124,7 +124,7 @@ steps:
- npm run readme:link
- npm run readme:lint
- npm run readme:parameters
image: docker.io/library/node:23.3.0-alpine
image: docker.io/library/node:23.5.0-alpine
resources:
limits:
cpu: 150
@ -187,7 +187,7 @@ steps:
from_secret: helm_repo_password
HELM_REPO_USERNAME:
from_secret: helm_repo_username
image: git.cryptic.systems/volker.raschek/helm:3.16.3
image: git.cryptic.systems/volker.raschek/helm:3.16.4
resources:
limits:
cpu: 150

View File

@ -0,0 +1,54 @@
name: Markdown linter
on:
pull_request:
paths: [ "**/*.md" ]
types: [ "opened", "reopened", "synchronize" ]
push:
paths: [ "**/*.md" ]
workflow_dispatch: {}
jobs:
markdown-link-checker:
container:
image: docker.io/library/node:22.9.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v4.2.2
- name: Verify links in markdown files
run: npm install && npm run readme:link
markdown-lint:
container:
image: docker.io/library/node:22.9.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v4.2.2
- name: Link markdown files
run: npm install && npm run readme:lint
generate-parameters:
container:
image: docker.io/library/node:22.9.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v4.2.2
- name: Generate parameter section in README
run: npm run readme:parameters
- name: Compare diff
run: git diff --exit-code --name-only README.md

View File

@ -3,19 +3,13 @@ CONTAINER_RUNTIME?=$(shell which podman)
# HELM_IMAGE
HELM_IMAGE_REGISTRY_HOST?=docker.io
HELM_IMAGE_REPOSITORY=volkerraschek/helm
HELM_IMAGE_REPOSITORY?=volkerraschek/helm
HELM_IMAGE_VERSION?=3.16.1 # renovate: datasource=docker registryUrl=https://docker.io depName=volkerraschek/helm
HELM_IMAGE_FULLY_QUALIFIED=${HELM_IMAGE_REGISTRY_HOST}/${HELM_IMAGE_REPOSITORY}:${HELM_IMAGE_VERSION}
# MARKDOWNLINKCHECKER_IMAGE
MARKDOWNLINKCHECK_IMAGE_REGISTRY_HOST?=ghcr.io
MARKDOWNLINKCHECK_IMAGE_REPOSITORY=tcort/markdown-link-check
MARKDOWNLINKCHECK_IMAGE_VERSION?=3.12.2 # renovate: datasource=docker registryUrl=https://ghcr.io depName=tcort/markdown-link-check
MARKDOWNLINKCHECK_IMAGE_FULLY_QUALIFIED=${MARKDOWNLINKCHECK_IMAGE_REGISTRY_HOST}/${MARKDOWNLINKCHECK_IMAGE_REPOSITORY}:${MARKDOWNLINKCHECK_IMAGE_VERSION}
# NODE_IMAGE
NODE_IMAGE_REGISTRY_HOST?=docker.io
NODE_IMAGE_REPOSITORY=library/node
NODE_IMAGE_REPOSITORY?=library/node
NODE_IMAGE_VERSION?=22.9.0-alpine # renovate: datasource=docker registryUrl=https://docker.io depName=library/node
NODE_IMAGE_FULLY_QUALIFIED=${NODE_IMAGE_REGISTRY_HOST}/${NODE_IMAGE_REPOSITORY}:${NODE_IMAGE_VERSION}
@ -90,16 +84,6 @@ container-run/helm-lint:
${HELM_IMAGE_FULLY_QUALIFIED} \
lint --values values.yaml .
# CONTAINER RUN - MARKDOWN-LINK-CHECK
# ==============================================================================
PHONY+=container-run/markdown-link-check
container-run/markdown-link-check:
${CONTAINER_RUNTIME} run \
--rm \
--volume $(shell pwd):/work \
${MARKDOWNLINKCHECK_IMAGE_FULLY_QUALIFIED} \
*.md
# PHONY
# ==============================================================================
# Declare the contents of the PHONY variable as phony. We keep that information

View File

@ -216,7 +216,7 @@ deployment:
| `deployment.postgresExporter.volumeMounts` | Additional volume mounts. | `[]` |
| `deployment.nodeSelector` | NodeSelector of the postgres-exporter deployment. | `{}` |
| `deployment.priorityClassName` | PriorityClassName of the postgres-exporter deployment. | `""` |
| `deployment.replicaCount` | Number of replicas for the postgres-exporter deployment. | `1` |
| `deployment.replicas` | Number of replicas for the postgres-exporter deployment. | `1` |
| `deployment.restartPolicy` | Restart policy of the postgres-exporter deployment. | `""` |
| `deployment.securityContext` | Security context of the postgres-exporter deployment. | `{}` |
| `deployment.strategy.type` | Strategy type - `Recreate` or `Rollingupdate`. | `Recreate` |

View File

@ -93,6 +93,22 @@ deployment:
## @param deployment.affinity Affinity for the postgres-exporter deployment.
affinity: {}
# nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms:
# - matchExpressions:
# - key: kubernetes.io/os
# operator: In
# values:
# - linux
# preferredDuringSchedulingIgnoredDuringExecution:
# - weight: 20
# preference:
# matchExpressions:
# - key: kubernetes.io/arch
# operator: In
# values:
# - amd64
## @param deployment.initContainers List of additional init containers.
initContainers: []