-
Notifications
You must be signed in to change notification settings - Fork 84
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 #120 from zakkg3/fix_chart
[chart 0.4.1] add node selectors tolerations and affinities
- Loading branch information
Showing
8 changed files
with
82 additions
and
34 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[allowlist] | ||
description = "global allow list" | ||
paths = [ | ||
'''*/yaml/Object_example/*.yaml''', | ||
'''*/conformance/tests.py''' | ||
] |
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 was deleted.
Oops, something went wrong.
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,36 @@ | ||
--- | ||
name: Lint | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: null | ||
pull_request: null | ||
|
||
jobs: | ||
build: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
# To report GitHub Actions status checks | ||
statuses: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
# super-linter needs the full git history to get the | ||
# list of files that changed across commits | ||
fetch-depth: 0 | ||
|
||
- name: Super-linter | ||
uses: super-linter/[email protected] # x-release-please-version | ||
env: | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VALIDATE_PYTHON: true | ||
LINTER_RULES_PATH: `.github/workflows/linters` | ||
|
||
|
||
|
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 |
---|---|---|
|
@@ -22,6 +22,7 @@ rules: | |
- list | ||
- get | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- events.k8s.io | ||
resources: | ||
|
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,11 +1,17 @@ | ||
clustersecret: | ||
clustersecret: | ||
image: | ||
repository: quay.io/clustersecret/clustersecret | ||
tag: 0.0.10 | ||
# use tag-alt for ARM and other alternative builds - read the readme for more information | ||
# If Clustersecret is about to create a secret and then it founds it exists: | ||
# Default is to ignore it. (to not loose any unintentional data) | ||
# It can also reeplace it. Just uncommenting next line. | ||
# replace_existing: 'true' | ||
imagePullSecrets: [] | ||
image: | ||
repository: quay.io/clustersecret/clustersecret | ||
tag: 0.0.10 | ||
# use tag-alt for ARM and other alternative builds - read the readme for more information | ||
# If Clustersecret is about to create a secret and then it founds it exists: | ||
# Default is to ignore it. (to not loose any unintentional data) | ||
# It can also reeplace it. Just uncommenting next line. | ||
# replace_existing: 'true' | ||
kubernetesClusterDomain: cluster.local | ||
|
||
|
||
nodeSelector: {} | ||
|
||
tolerations: [] | ||
|
||
affinity: {} |