Skip to content

chore(deps): update mariadb docker tag to v11.2.3 #2834

chore(deps): update mariadb docker tag to v11.2.3

chore(deps): update mariadb docker tag to v11.2.3 #2834

Workflow file for this run

name: Verify Helm Charts
on:
push:
jobs:
verify-charts:
runs-on: ubuntu-22.04
container: ghcr.io/skaronator/devops-toolbox:v60
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Show versions
run: |
helm version
kubeconform -v
kubectl version --client
- name: Verify everything
run: |
for dir in *; do
# exclude files and dirs that start with a . (dot)
if [ -d "$dir" ] && ! echo "$dir" | grep -q '/\.[^.]/'; then
echo "Processing directory: $dir"
for chart in "$dir"/*; do
echo "Processing chart: $chart"
kubectl kustomize "$chart" --enable-helm | kubeconform -ignore-missing-schemas -schema-location default -schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' -strict -summary
done
fi
done