Add option to set Topology Spread Constraints, rather than just Affinity #335
Workflow file for this run
This file contains 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
name: Lint Charts | |
on: | |
pull_request: | |
paths: | |
- "charts/**" | |
jobs: | |
check-readme: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v3 | |
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # pin@v4 | |
with: | |
python-version: 3.7 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # pin@v3 | |
with: | |
go-version: ^1 | |
- name: Setup helm-docs | |
run: go install github.com/norwoodj/helm-docs/cmd/helm-docs@latest | |
- name: Run pre-commit | |
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # pin@v3.0.1 | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pin@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@fe7b79cd5ee1e45176fcad797de68ecaf3ca4814 # pin@v4.2.0 | |
with: | |
version: v3.10.0 | |
- uses: actions/setup-python@39cd14951b08e74b54015e9e001cdefcf80e669f # pin@v4 | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@e6669bcd63d7cb57cb4380c33043eebe5d111992 # pin@v2.3.0 | |
- name: "Add NGINX Ingress and Bitnami Repository" | |
run: | | |
helm repo add ingress-nginx "https://kubernetes.github.io/ingress-nginx" | |
helm repo update | |
- name: Run chart-testing (lint) | |
run: ct lint --config ct.yaml | |
- name: Create KIND Cluster | |
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # pin@v1.10.0 | |
- name: Install Ingress Controller | |
run: "helm install ingress-nginx/ingress-nginx --generate-name --set controller.service.type='NodePort' --set controller.admissionWebhooks.enabled=false" | |
- name: Run chart-testing (install) | |
run: ct install --config ct-install.yaml |