forked from Unleash/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Exafunction/nick/merge_remote
[Sync] Sync with remote
- Loading branch information
Showing
31 changed files
with
589 additions
and
185 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
helm-extra-args: --timeout 300s | ||
check-version-increment: true | ||
debug: true | ||
upgrade: true | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,15 @@ name: ci | |
on: | ||
pull_request: | ||
paths: | ||
- 'charts/**/**' | ||
- "charts/**/**" | ||
|
||
jobs: | ||
codespell: | ||
name: codespell | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Codespell | ||
uses: codespell-project/actions-codespell@master | ||
with: | ||
|
@@ -25,41 +25,42 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: v3.11.1 | ||
- uses: actions/setup-python@v4 | ||
uses: azure/[email protected] | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
python-version: '3.x' | ||
check-latest: true | ||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2.3.1 | ||
uses: helm/chart-testing-action@v2.6.1 | ||
- name: Run chart-testing (lint) | ||
run: ct lint --config .github/ct.yaml | ||
|
||
super-linter: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
# https://github.com/github/super-linter/issues/1397 | ||
with: | ||
# Full git history is needed to get a proper | ||
# list of changed files within `super-linter` | ||
fetch-depth: 0 | ||
- name: Lint Code Base | ||
uses: github/super-linter@v4 | ||
uses: super-linter/super-linter@v6.5.0 | ||
env: | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_JSCPD: false | ||
VALIDATE_KUBERNETES_KUBEVAL: false | ||
VALIDATE_YAML: false | ||
VALIDATE_KUBERNETES_KUBECONFORM: false | ||
VALIDATE_CHECKOV: false | ||
|
||
kubeconform: | ||
runs-on: ubuntu-latest | ||
needs: | ||
|
@@ -69,24 +70,22 @@ jobs: | |
strategy: | ||
matrix: | ||
k8s: | ||
- 1.23.17 | ||
- 1.24.11 | ||
- 1.25.7 | ||
- 1.26.2 | ||
- 1.26.15 | ||
- 1.27.14 | ||
- 1.28.10 | ||
- 1.29.5 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: 3.11.1 | ||
uses: azure/[email protected] | ||
- name: Run kubeconform tests | ||
run: .github/kubeconform.sh | ||
env: | ||
KUBERNETES_VERSION: ${{ matrix.k8s }} | ||
KUBECONFORM_VERSION: v0.6.1 | ||
KUBECONFORM_VERSION: v0.6.6 | ||
- name: Create test summary | ||
uses: test-summary/action@v2 | ||
with: | ||
|
@@ -95,31 +94,29 @@ jobs: | |
|
||
install-chart: | ||
name: install-chart | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-latest | ||
needs: | ||
- kubeconform | ||
strategy: | ||
matrix: | ||
k8s: | ||
- v1.23.13 | ||
- v1.24.7 | ||
- v1.25.3 | ||
- v1.26.2 | ||
- v1.26.15 | ||
- v1.27.13 | ||
- v1.28.9 | ||
- v1.29.4 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.11.1 | ||
- uses: actions/setup-python@v4 | ||
uses: azure/[email protected] | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.9 | ||
python-version: '3.x' | ||
check-latest: true | ||
- name: Set up chart-testing | ||
uses: helm/chart-testing-action@v2.3.1 | ||
uses: helm/chart-testing-action@v2.6.1 | ||
- name: Run chart-testing (list-changed) | ||
id: list-changed | ||
run: | | ||
|
@@ -128,7 +125,7 @@ jobs: | |
echo "changed=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Create kind cluster | ||
uses: helm/kind-action@v1.5.0 | ||
uses: helm/kind-action@v1 | ||
if: steps.list-changed.outputs.changed == 'true' | ||
with: | ||
config: .github/kind-config.yaml | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
|
@@ -20,11 +20,9 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Install Helm | ||
uses: azure/setup-helm@v3 | ||
with: | ||
version: 3.11.1 | ||
uses: azure/[email protected] | ||
|
||
- name: Run chart-releaser | ||
uses: helm/chart-releaser-action@v1.5.0 | ||
uses: helm/chart-releaser-action@v1.6.0 | ||
env: | ||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,20 @@ | ||
--- | ||
apiVersion: v2 | ||
name: unleash-edge | ||
description: A Helm chart for deploying Unleash Edge to kubernetes | ||
icon: https://docs.getunleash.io/img/logo.svg | ||
|
||
type: application | ||
version: 2.0.2 | ||
|
||
appVersion: "v11.0.2" | ||
version: 2.6.5 | ||
|
||
appVersion: "v19.2.0" | ||
|
||
maintainers: | ||
- name: chriswk | ||
- name: sighphyre | ||
- name: nunogois | ||
- name: gastonfournier | ||
|
||
sources: | ||
- https://github.com/Unleash/unleash-edge | ||
- https://github.com/Unleash/helm-charts |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
edge: | ||
upstreamUrl: http://unleash.unleash:4242 | ||
|
||
hostAliases: | ||
- ip: "127.0.0.1" | ||
hostnames: | ||
- "foo.local" | ||
|
||
resources: | ||
requests: | ||
cpu: 100m | ||
memory: 64Mi | ||
limits: | ||
cpu: 200m | ||
memory: 64Mi |
Oops, something went wrong.