-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor + cleanup
- Loading branch information
Showing
718 changed files
with
3,418 additions
and
988 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 |
---|---|---|
|
@@ -12,4 +12,4 @@ updates: | |
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
interval: "weekly" |
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 |
---|---|---|
|
@@ -14,23 +14,6 @@ on: # yamllint disable-line rule:truthy | |
- docs/*.md | ||
|
||
jobs: | ||
lint-kustomize: | ||
runs-on: ubuntu-latest | ||
env: | ||
KUSTOMIZE_VERSION: 3.9.4 | ||
KUSTOMIZE_URL: https://github.com/kubernetes-sigs/kustomize/releases/download/v${KUSTOMIZE_VERSION}/kustomize_${KUSTOMIZE_VERSION}_linux_amd64 | ||
BIN_PATH: /usr/bin | ||
steps: | ||
- name: Install Kustomize | ||
run: | | ||
sudo curl "${KUSTOMIZE_URL}" -L -o ${BIN_PATH}/kustomize | ||
sudo chmod +x ${BIN_PATH}/kustomize | ||
- name: Code Checkout | ||
uses: actions/checkout@v4 | ||
- name: Validate Manifests | ||
run: | | ||
[ -d ./bootstrap/base ] && touch bootstrap/base/sealed-secrets-secret.yaml | ||
./scripts/validate_manifests.sh | ||
|
||
lint-yaml: | ||
runs-on: ubuntu-latest | ||
|
@@ -65,4 +48,27 @@ jobs: | |
uses: hadolint/[email protected] | ||
with: | ||
dockerfile: Dockerfile | ||
recursive: true | ||
recursive: true | ||
|
||
lint-manifests: | ||
runs-on: ubuntu-latest | ||
env: | ||
# KUSTOMIZE_VERSION: v5.0.1 | ||
BIN_PATH: /usr/bin | ||
steps: | ||
- name: Install Kustomize | ||
run: | | ||
set -x | ||
LATEST=$( curl -s https://api.github.com/repos/kubernetes-sigs/kustomize/releases/latest | jq .name | sed 's#kustomize/##; s#"##g') | ||
BIN_VERSION=${KUSTOMIZE_VERSION:-${LATEST}} | ||
DOWNLOAD_URL=https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2F${BIN_VERSION}/kustomize_${BIN_VERSION}_linux_amd64.tar.gz | ||
curl "${DOWNLOAD_URL}" -sL | sudo tar zx -C "${BIN_PATH}/" kustomize | ||
sudo chmod +x "${BIN_PATH}"/kustomize | ||
- name: Code Checkout | ||
uses: actions/checkout@v4 | ||
- name: Validate Manifests | ||
run: | | ||
[ -d ./bootstrap/base ] && touch bootstrap/base/sealed-secrets-secret.yaml | ||
./scripts/validate_kustomize.sh | ||
./scripts/validate_helm.sh |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ scratch/ | |
files.txt | ||
bootstrap/sealed-secrets-secret.yaml | ||
**/charts/ | ||
|
||
dictionary.dic | ||
|
||
# swap files | ||
|
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
Oops, something went wrong.