-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(shulker-operator): support volume and volume mounts on proxy fle…
…ets (#470) * feat(shulker-crds): add volume and volume mounts overrides to proxy fleet * feat(shulker-operator): inject volume and volume mounts overrides to proxy fleets * fix(shulker-operator): properly use image overrides * chore: fix version drift between protobuf and buf failing builds
- Loading branch information
1 parent
90f15b5
commit 90b93a1
Showing
17 changed files
with
1,722 additions
and
124 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
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 +1,3 @@ | ||
#!/usr/bin/env bash | ||
|
||
npx --no -- commitlint --edit ${1} |
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,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
node scripts/generate_codecov_config.cjs | ||
git add codecov.yml scripts/upload_codecov_files.sh | ||
|
||
files_modified=$(git diff --cached --name-only --diff-filter=ACM) | ||
if [[ $files_modified == *"packages/shulker-crds/src"* ]]; then | ||
echo "Regenerating CRDs because package was modified..." | ||
cargo run --bin crdgen | ||
git add "kube/helm/**/crds/*.yaml" | ||
fi | ||
|
||
npx --no -- lint-staged |
137 changes: 106 additions & 31 deletions
137
kube/helm/templates/crds/shulkermc.io_minecraftserverfleets.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
134 changes: 105 additions & 29 deletions
134
kube/helm/templates/crds/shulkermc.io_minecraftservers.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
1,209 changes: 1,195 additions & 14 deletions
1,209
kube/helm/templates/crds/shulkermc.io_proxyfleets.yaml
Large diffs are not rendered by default.
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
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
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
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.