-
Notifications
You must be signed in to change notification settings - Fork 1
[DEVEX-1535] Add helm-chart-lint + helm-goldens-check composite actions #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,74 @@ | ||
| name: Helm chart lint | ||
| description: >- | ||
| Enforce the org-wide Helm chart convention: values-file names, single `.Values.app` | ||
| namespace, template filenames that reflect kind + consumer, and approved render-gate | ||
| keys. See encodium/dump/aronneseth/helm_chart_naming_guideline.plan.md §3.1. | ||
|
|
||
| inputs: | ||
| chart-path: | ||
| description: Path to the chart directory (the dir containing Chart.yaml + values.yaml + templates/). | ||
| required: false | ||
| default: ./deployments | ||
|
|
||
| helm-version: | ||
| description: Helm version to install for the `helm template` render check. | ||
| required: false | ||
| default: v3.16.4 | ||
|
|
||
| yq-version: | ||
| description: yq version (mikefarah/yq) to install for YAML inspection. | ||
| required: false | ||
| default: v4.44.3 | ||
|
|
||
| reserved-chart-control-keys: | ||
| description: >- | ||
| Whitespace-separated list of allowed top-level keys in values files (in addition to `app`). | ||
| Chart-local additions (e.g. extra per-resource gates) can be appended via this input | ||
| without modifying the central action. | ||
| required: false | ||
| default: >- | ||
| app | ||
| budget | ||
| daemons | ||
| envConfigMap | ||
| image | ||
| imagePullSecrets | ||
| ingress | ||
| keda | ||
| replicas | ||
| resources | ||
| serviceAccount | ||
| serviceAccountName | ||
| vault | ||
|
|
||
| runs: | ||
| using: composite | ||
| steps: | ||
| - name: Install helm | ||
| uses: azure/setup-helm@v4 | ||
| with: | ||
| version: ${{ inputs.helm-version }} | ||
|
|
||
| - name: Install yq | ||
| shell: bash | ||
| env: | ||
| YQ_VERSION: ${{ inputs.yq-version }} | ||
| run: | | ||
| set -euo pipefail | ||
| if command -v yq >/dev/null 2>&1; then | ||
| installed="$(yq --version 2>&1 | grep -oE 'v[0-9.]+' | head -n1 || true)" | ||
| if [[ "$installed" == "${YQ_VERSION}" ]]; then | ||
| echo "yq ${YQ_VERSION} already installed" | ||
| exit 0 | ||
| fi | ||
| fi | ||
| sudo curl -sSL -o /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/download/${YQ_VERSION}/yq_linux_amd64" | ||
| sudo chmod +x /usr/local/bin/yq | ||
| yq --version | ||
|
|
||
| - name: Lint chart | ||
| shell: bash | ||
| env: | ||
| CHART_PATH: ${{ inputs.chart-path }} | ||
| RESERVED_KEYS: ${{ inputs.reserved-chart-control-keys }} | ||
| run: ${{ github.action_path }}/scripts/lint.sh | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,226 @@ | ||
| #!/usr/bin/env bash | ||
| # | ||
| # helm-chart-lint — file-name + namespace + template-name linter for the | ||
| # org-wide Helm chart convention. Invoked by the helm-chart-lint composite | ||
| # action; can also be run locally: | ||
| # | ||
| # CHART_PATH=./deployments \ | ||
| # RESERVED_KEYS="app budget daemons envConfigMap image ingress ..." \ | ||
| # ./lint.sh | ||
| # | ||
| # Exits non-zero on the first failed rule. Each rule prints its findings to | ||
| # stderr with file:line context where applicable. | ||
| # | ||
| set -euo pipefail | ||
|
|
||
| CHART_PATH="${CHART_PATH:-./deployments}" | ||
| RESERVED_KEYS="${RESERVED_KEYS:-app budget daemons envConfigMap image imagePullSecrets ingress keda replicas resources serviceAccount serviceAccountName vault}" | ||
|
|
||
| # `app` is always implicitly reserved (Rule 5 requires it; the action.yml input | ||
| # documents the per-chart list as "in addition to `app`"). Prepend defensively | ||
| # so a caller that overrides reserved-chart-control-keys without restating | ||
| # `app` does not produce a self-contradicting Rule 5 / Rule 6 failure. | ||
| RESERVED_KEYS="app ${RESERVED_KEYS}" | ||
|
|
||
| # Convention values-file regex (mirrors guideline §3.1): | ||
| # values.yaml | values-{local,stg,qa,prod,dev-ec2,qa-ec2,prod-ec2}.yaml | ||
| # plus Chart.yaml and the optional values.schema.json. | ||
| # Playground overlays (values-pg-*.yaml) are NOT permitted inside the chart dir | ||
| # itself — they live alongside playground instances, not in the chart. | ||
| VALUES_NAME_RE='^(values\.yaml|values-(local|stg|qa|prod|dev-ec2|qa-ec2|prod-ec2)\.yaml|Chart\.yaml|values\.schema\.json)$' | ||
|
|
||
| FAILED=0 | ||
|
|
||
| fail() { | ||
| FAILED=1 | ||
| echo "::error::$1" >&2 | ||
| } | ||
|
|
||
| info() { | ||
| echo "::group::$1" | ||
| } | ||
|
|
||
| end() { | ||
| echo "::endgroup::" | ||
| } | ||
|
|
||
| if [[ ! -d "$CHART_PATH" ]]; then | ||
| fail "Chart directory not found: $CHART_PATH" | ||
| exit 1 | ||
| fi | ||
|
|
||
| if [[ ! -f "$CHART_PATH/Chart.yaml" ]]; then | ||
| fail "Chart.yaml missing under $CHART_PATH" | ||
| exit 1 | ||
| fi | ||
|
|
||
| if [[ ! -f "$CHART_PATH/values.yaml" ]]; then | ||
| fail "values.yaml missing under $CHART_PATH" | ||
| exit 1 | ||
| fi | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 1 — Values file names match the convention | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 1: values file names" | ||
|
|
||
| # Only direct children of $CHART_PATH; subdirs (templates/, golden/, etc.) and | ||
| # files inside them are out of scope for the values-file naming rule. | ||
| while IFS= read -r -d '' f; do | ||
| base="$(basename "$f")" | ||
| # Skip dotfiles (.helmignore etc.) and README / LICENSE / NOTES. | ||
| case "$base" in | ||
| .*) continue ;; | ||
| README*|LICENSE*|NOTES*|OWNERS*|*.md|*.tgz) continue ;; | ||
| esac | ||
| # Anything not a *.yaml at the chart root is ignored. | ||
| case "$base" in | ||
| *.yaml|*.json) ;; | ||
| *) continue ;; | ||
| esac | ||
| if ! [[ "$base" =~ $VALUES_NAME_RE ]]; then | ||
| fail "Disallowed values file name: $CHART_PATH/$base (does not match $VALUES_NAME_RE)" | ||
| fi | ||
| done < <(find "$CHART_PATH" -maxdepth 1 -type f -print0) | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 2 — helm template ./deployments (no -f, no --set) renders cleanly | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 2: values.yaml renders cleanly with no overrides" | ||
|
|
||
| if ! helm template "$CHART_PATH" >/dev/null 2>/tmp/helm-render.err; then | ||
| fail "helm template $CHART_PATH FAILED with no overrides — values.yaml must render cleanly." | ||
| sed 's/^/ /' /tmp/helm-render.err >&2 | ||
| fi | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 3 — Template filenames: no env-file.yaml; require env-configmap.yaml | ||
| # shape for the env-file ConfigMap. Other templates' kinds must | ||
| # match their filename slug. | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 3: template filenames" | ||
|
|
||
| if [[ -d "$CHART_PATH/templates" ]]; then | ||
| if [[ -f "$CHART_PATH/templates/env-file.yaml" ]]; then | ||
| fail "templates/env-file.yaml must be renamed to templates/env-configmap.yaml (per convention §2 / template-naming rule)" | ||
| fi | ||
| fi | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 4 — No top-level `topo:` key in any values file | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 4: forbidden .topo namespace" | ||
|
|
||
| while IFS= read -r -d '' f; do | ||
| # `yq e '.topo' file` returns "null" if the key is absent. Any other value | ||
| # (including `{}`) means the key is present. | ||
| val="$(yq e '.topo // "__ABSENT__"' "$f" 2>/dev/null || echo "__ABSENT__")" | ||
| if [[ "$val" != "__ABSENT__" ]]; then | ||
| line="$(grep -nE '^topo:' "$f" | head -n1 | cut -d: -f1 || true)" | ||
| fail "$f${line:+:$line}: top-level \`topo:\` key is forbidden — collapse into \`.Values.app\`." | ||
| fi | ||
| done < <(find "$CHART_PATH" -maxdepth 1 -type f -name 'values*.yaml' -print0) | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 5 — Mandatory `.app` namespace in values.yaml | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 5: mandatory .app namespace" | ||
|
|
||
| app_type="$(yq e '.app | tag' "$CHART_PATH/values.yaml" 2>/dev/null || echo '!!null')" | ||
| if [[ "$app_type" == "!!null" ]]; then | ||
| fail "$CHART_PATH/values.yaml: \`app:\` namespace is missing. Charts with no app config must declare \`app: {}\` explicitly." | ||
| elif [[ "$app_type" != "!!map" ]]; then | ||
| fail "$CHART_PATH/values.yaml: \`app:\` must be a map (got $app_type)." | ||
| fi | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 6 — No top-level non-reserved namespaces in any values file | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 6: top-level keys are reserved chart-control keys" | ||
|
|
||
| # Normalize reserved list to a newline-separated set for grep -Fxqf. | ||
| # `|| true` keeps the pipeline alive under `pipefail` when no lines survive | ||
| # the filter (e.g. caller passed an empty RESERVED_KEYS) — Rule 6 then fires | ||
| # loudly on every top-level key instead of the script dying silently. | ||
| RESERVED_FILE="$(mktemp)" | ||
| echo "$RESERVED_KEYS" | tr -s '[:space:]' '\n' | { grep -v '^$' || true; } | sort -u > "$RESERVED_FILE" | ||
|
|
||
| while IFS= read -r -d '' f; do | ||
| # Top-level keys only. yq returns one key per line. | ||
| keys="$(yq e 'keys | .[]' "$f" 2>/dev/null || true)" | ||
| if [[ -z "$keys" ]]; then | ||
| continue | ||
| fi | ||
| while IFS= read -r k; do | ||
| [[ -z "$k" ]] && continue | ||
| if ! grep -Fxq "$k" "$RESERVED_FILE"; then | ||
| line="$(grep -nE "^${k}:" "$f" | head -n1 | cut -d: -f1 || true)" | ||
| fail "$f${line:+:$line}: top-level key \`${k}:\` is not in the reserved chart-control set. Move env-producing keys under \`.app\` or extend reserved-chart-control-keys." | ||
| fi | ||
| done <<< "$keys" | ||
| done < <(find "$CHART_PATH" -maxdepth 1 -type f -name 'values*.yaml' -print0) | ||
|
|
||
| rm -f "$RESERVED_FILE" | ||
|
|
||
| end | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Rule 7 — No `if .Values.<unapproved-key>` render gates in templates | ||
| # --------------------------------------------------------------------------- | ||
| info "Rule 7: render gates use approved chart-control keys" | ||
|
|
||
| if [[ -d "$CHART_PATH/templates" ]]; then | ||
| # Scan every templates/*.yaml (and .tpl) for `if .Values.X` or `with .Values.X` | ||
| # where X is the first dotted segment. | ||
| RESERVED_LIST="$(mktemp)" | ||
| echo "$RESERVED_KEYS" | tr -s '[:space:]' '\n' | { grep -v '^$' || true; } > "$RESERVED_LIST" | ||
|
|
||
| # Match `{{ if .Values.X }}`, `{{ with .Values.X }}`, `{{ else if .Values.X }}`, | ||
| # and `{{ else with .Values.X }}` — all four are render-gate forms whose root | ||
| # key must be in the reserved chart-control set. `else` alone (no following | ||
| # if/with) has no condition and is intentionally not matched. | ||
| DIRECTIVE_RE='(else[[:space:]]+)?(if|with)[[:space:]]+(\(?[[:space:]]*not[[:space:]]+)?\.Values\.' | ||
| LINE_RE="\\{\\{-?[[:space:]]*${DIRECTIVE_RE}" | ||
|
|
||
| while IFS= read -r -d '' tmpl; do | ||
| # grep returns lines like LINE:CONTENT (single file, no filename prefix). | ||
| while IFS= read -r hit; do | ||
| [[ -z "$hit" ]] && continue | ||
| line="${hit%%:*}" | ||
| content="${hit#*:}" | ||
| # Extract just the matched root key — the first dotted segment after | ||
| # `.Values.` in the directive. | ||
| root="$(echo "$content" | grep -oE "${DIRECTIVE_RE}[A-Za-z_][A-Za-z0-9_]*" \ | ||
| | head -n1 \ | ||
| | grep -oE '\.Values\.[A-Za-z_][A-Za-z0-9_]*' \ | ||
| | sed 's/^\.Values\.//')" | ||
| if [[ -z "$root" ]]; then | ||
| continue | ||
| fi | ||
| if ! grep -Fxq "$root" "$RESERVED_LIST"; then | ||
| fail "${tmpl}:${line}: render gate \`.Values.${root}\` is not an approved chart-control key. Use a per-resource \`.<resource>.enabled\` flag (e.g. \`.envConfigMap.enabled\`)." | ||
| fi | ||
| done < <(grep -nE "$LINE_RE" "$tmpl" || true) | ||
| done < <(find "$CHART_PATH/templates" -type f \( -name '*.yaml' -o -name '*.tpl' \) -print0) | ||
|
|
||
| rm -f "$RESERVED_LIST" | ||
| fi | ||
|
|
||
| end | ||
|
|
||
| if [[ "$FAILED" -ne 0 ]]; then | ||
| echo "::error::helm-chart-lint: one or more rules failed. See annotations above." >&2 | ||
| exit 1 | ||
| fi | ||
|
|
||
| echo "helm-chart-lint: all rules passed for $CHART_PATH" |
6 changes: 6 additions & 0 deletions
6
.github/actions/helm-chart-lint/tests/fixtures/bad-chart/Chart.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| apiVersion: v2 | ||
| name: bad-chart | ||
| description: A non-compliant fixture used to prove helm-chart-lint catches violations. | ||
| type: application | ||
| version: 0.1.0 | ||
| appVersion: "0.1.0" |
2 changes: 2 additions & 0 deletions
2
.github/actions/helm-chart-lint/tests/fixtures/bad-chart/stg-values.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| topo: | ||
| vpc_host: stg.example.local |
22 changes: 22 additions & 0 deletions
22
.github/actions/helm-chart-lint/tests/fixtures/bad-chart/templates/deployment.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: {{ .Chart.Name }} | ||
| spec: | ||
| replicas: {{ .Values.replicas }} | ||
| selector: | ||
| matchLabels: | ||
| app.kubernetes.io/name: {{ .Chart.Name }} | ||
| template: | ||
| metadata: | ||
| labels: | ||
| app.kubernetes.io/name: {{ .Chart.Name }} | ||
| spec: | ||
| containers: | ||
| - name: app | ||
| image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" | ||
| env: | ||
| - name: VPC_HOST | ||
| value: "{{ .Values.topo.vpc_host }}" | ||
| - name: AWS_REGION | ||
| value: "{{ .Values.aws.region }}" |
17 changes: 17 additions & 0 deletions
17
.github/actions/helm-chart-lint/tests/fixtures/bad-chart/templates/env-file.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| {{- if .Values.ec2 }} | ||
| apiVersion: v1 | ||
| kind: ConfigMap | ||
| metadata: | ||
| name: {{ .Chart.Name }}-env | ||
| data: | ||
| content: | | ||
| APP_BASE_PATH="{{ .Values.ec2.appBasePath }}" | ||
| VPC_HOST="{{ .Values.topo.vpc_host }}" | ||
| {{- else if .Values.aws }} | ||
| apiVersion: v1 | ||
| kind: ConfigMap | ||
| metadata: | ||
| name: {{ .Chart.Name }}-env-cloud | ||
| data: | ||
| region: "{{ .Values.aws.region }}" | ||
| {{- end }} |
14 changes: 14 additions & 0 deletions
14
.github/actions/helm-chart-lint/tests/fixtures/bad-chart/values.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| topo: | ||
| vpc_host: stg.example.local | ||
|
|
||
| aws: | ||
| region: us-west-2 | ||
|
|
||
| ec2: | ||
| appBasePath: /opt/app | ||
|
|
||
| image: | ||
| repository: example/bad | ||
| tag: "0.1.0" | ||
|
|
||
| replicas: 1 |
6 changes: 6 additions & 0 deletions
6
.github/actions/helm-chart-lint/tests/fixtures/good-chart/Chart.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| apiVersion: v2 | ||
| name: good-chart | ||
| description: A convention-compliant fixture used to smoke-test helm-chart-lint. | ||
| type: application | ||
| version: 0.1.0 | ||
| appVersion: "0.1.0" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.